前端之家收集整理的这篇文章主要介绍了
sqlite 判断某张表是否存在,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
-
- *判断某张表是否存在
- *@paramtabName表名
- *@return
- */
- publicbooleantabbleIsExist(StringtableName){
- booleanresult=false;
- if(tableName==null){
- return }
- sqliteDatabasedb=null;
- Cursorcursor=try{
- db=this.getReadableDatabase();
- Stringsql="selectcount(*)ascfromsqlite_masterwheretype='table'andname='"+tableName.trim()+"'";
- cursor=db.rawQuery(sql,null);
- if(cursor.moveToNext()){
- intcount=cursor.getInt(0);
- if(count>0){
- result=true;
-
- }catch(Exceptione){
- //TODO:handleexception
- returnresult;
- }
原文链接:https://www.f2er.com/sqlite/201194.html