SQLite添加新的字段

Posted 天王星天

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQLite添加新的字段相关的知识,希望对你有一定的参考价值。

通过alter添加新的字段SQL语句

 

"ALTER TABLE ‘DiHKChatMessage‘ ADD  ‘phoneNum‘ varchar";

但是如果这个字段已经存在的话,运行程序直接会崩溃,那怎么解决?

 

     我们可以在添加字段之前,对数据库进行判断看是否已经存在该字段了,方法如下:

 

技术分享图片
/**
 * 方法1:检查某表列是否存在
 * @param db
 * @param tableName 表名
 * @param columnName 列名
 * @return
 */
private static boolean checkColumnExist1(SQLiteDatabase db, String tableName
        , String columnName) {
    boolean result = false ;
    Cursor cursor = null ;
    try{
        //查询一行
        cursor = db.rawQuery( "SELECT * FROM " + tableName + " LIMIT 0", null );
        result = cursor != null && cursor.getColumnIndex(columnName) != -1 ;
    }catch (Exception e){
        LogUtil.logErrorMessage("checkColumnExists1..." + e.getMessage());
    }finally{
        if(null != cursor && !cursor.isClosed()){
            cursor.close() ;
        }
    }

    return result ;
}


/**
 * 方法2:检查表中某列是否存在
 * @param db
 * @param tableName 表名
 * @param columnName 列名
 * @return
 */
private static boolean checkColumnExists2(SQLiteDatabase db, String tableName, String columnName) {
    boolean result = false ;
    Cursor cursor = null ;

    try{
        cursor = db.rawQuery( "select * from sqlite_master where name = ? and sql like ?"
                , new String[]{tableName , "%" + columnName + "%"} );
        result = null != cursor && cursor.moveToFirst() ;
    }catch (Exception e){
        LogUtil.logErrorMessage("checkColumnExists2..." + e.getMessage());
    }finally{
        if(null != cursor && !cursor.isClosed()){
            cursor.close() ;
        }
    }

    return result ;
}
View Code

 

以上是关于SQLite添加新的字段的主要内容,如果未能解决你的问题,请参考以下文章

sqlite如何添加新字段

如果我想从另一个片段中添加书签,为啥我的书签单词没有保存到 sqlite 数据库?

从 2 个不同片段的 sqlite 中的 2 个表中获取信息

导航抽屉片段 Sqlite

从其他片段添加新的 RecyclerView 项

如何使用光标和循环显示来自 sqlite 的片段的 recyclerview