更改了数据库,更新的数据库版本无法添加数据,也无法添加数据

时间:2015-07-31 05:28:00

标签: java android sqlite insert

我正在使用一个使用两个数据库的android应用程序。最近,我不得不在其中一个数据库中添加一个新列。这样做,它打破了我的数据库。在我的设备上安装和重新安装应用程序什么也没做,我还更新了数据库版本。

尝试插入数据会给我带来这个错误:

E/SQLiteLog﹕ (1) table message_table has no column named msg_type

所以,我尝试取出" msg_type"插入的列,并插入给我这个错误的数据:

E/SQLiteLog﹕ (1299) abort at 8 in [INSERT INTO message_table(recipient,message) VALUES (?,?)]: NOT NULL constraint failed: message_table.msg_typeTEXT

这是oncreate:

@Override
public void onCreate(SQLiteDatabase db) {
    db.execSQL("CREATE TABLE IF NOT EXISTS " + TABLE_NAME + " (" +
            COL_1 + " INTEGER PRIMARY KEY AUTOINCREMENT, " + //msg_id
            COL_2 + " TEXT NOT NULL, " + //recipient
            COL_3 + " TEXT, " + //message
            COL_4 + "TEXT NOT NULL);"); //message type
}

和插入类:

public boolean addMessage(String recipient, String message, String type){
    SQLiteDatabase db = this.getWritableDatabase();
    ContentValues contentValues = new ContentValues();

    //populate message object
    contentValues.put(COL_2, recipient);
    contentValues.put(COL_3, message);
    contentValues.put(COL_4, type);

    //insert new message
    long result = db.insert(TABLE_NAME, null, contentValues);

    //check if operation was successful
    if(result == -1)
        return false;
    else
        return true;
}

如何在两种情况下都收到错误?我认为它没有认识到新列是从第一个错误中添加的,但它也不喜欢不接收该列的数据。

1 个答案:

答案 0 :(得分:1)

发生错误是因为列名和TEXT之间没有空格。因此列名称变为message_table。 msg_typeTEXT

COL_4 + "TEXT NOT NULL);"); //message type

这应该可以解决错误:

COL_4 + " TEXT NOT NULL);"); //message type