[O]SQLite資料庫報錯:no such column

來源:互聯網
上載者:User

標籤:

在SQLite資料庫建立語句增加列,運行後報錯:no such column

在文法規範的前提下,即

//SQLite資料庫建立,逗號與空格須嚴格String CREATE_NOTE = "create table "+ NotepadEntity.TABLE_NOTE+ " (" + NotepadEntity.NOTE_ID + " integer primary key autoincrement,"+ NotepadEntity.NOTE_TITLE + " varchar not null," //此列為修改語句後增加+ NotepadEntity.NOTE_CONTENT + " text not null,"+ NotepadEntity.NOTE_CREATE_DATE + " text);";SQLiteDatabase db;db.execSQL(CREATE_NOTE);

 仍無法編譯通過,其原因是SQLite建立命令執行過一次,資料庫檔案已存在,即使語句有變更,也沒有再執行。

解決辦法:

開啟DDMS工具找到“File  Explorer”,定位到專案檔裡的資料庫檔案列表(展開到/data/data/<package name>/databases)

(可將資料庫檔案匯出電腦,用SQLite Database Browser等工具查看是否有列資料未建立)

刪除該資料庫檔案及其journal檔案,返回工程再次運行,程式檢測到資料庫為空白,則執行建立命令,編譯通過。

此時再匯出DDMS下的資料庫檔案,查看列表結構,新增列建立成功,問題解決。

 

[O]SQLite資料庫報錯:no such column

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.