ASP源码.NET源码PHP源码JSP源码JAVA源码DELPHI源码PB源码VC源码VB源码Android源码
当前位置:首页 >> 数据库 >> SQLite >> Android开发判断SQLite数据库中某个表是否存在

Android开发判断SQLite数据库中某个表是否存在

来源:网络整理     时间:2016-02-16     关键词:

本篇文章主要介绍了"Android开发判断SQLite数据库中某个表是否存在",主要涉及到方面的内容,对于SQLite感兴趣的同学可以参考一下: 直接上方法: public boolean tabIsExist(SQLiteDatabase db){boolean result = false;if(...

直接上方法: 
public boolean tabIsExist(SQLiteDatabase db){
        boolean result = false;
        if(yourTableName == null){
            return false;
        }
        Cursor cursor = null;
        try {

            String sql = "select count(*) as c from sqlite_master where type ='table' and name ='"+yourTableName.trim()+"' ";
            cursor = db.rawQuery(sql, null);
            if(cursor.moveToNext()){
                int count = cursor.getInt(0);
                if(count>0){
                    result = true;
                }
            }

        } catch (Exception e) {
        }
        return result;
    }

以上就介绍了Android开发判断SQLite数据库中某个表是否存在,包括了方面的内容,希望对SQLite有兴趣的朋友有所帮助。

本文网址链接:http://www.codes51.com/article/detail_322849.html

相关图片

相关文章