android – 報錯column ‘_id’ does not exist的解決

來源:互聯網
上載者:User

1、程式中用到了sqlite,結果運行時報錯如下:

1 java.lang.IllegalArgumentException:
column
'_id'

does not exist

2、網上搜尋一番,出現該錯誤原因是:

使用Cursor相關的Adapter時需要一個自增的列,且名字必需為 _id。而我建立的表裡沒有這個欄位,只有一個名為id的自增列。

3、解決辦法:

1)建立資料表時插入一個名為_id的列,類型為自增量,因為在使用Cursor相關的Adapter時需要用到這個列

2)如果實在不需要這個列的話,可以把資料表中某一列使用AS映射為 _id,再進行操作

如,我有一個表, 表中兩個欄位分別為id, 和jokeContent, 現在我想用一個SimpleCursorAdapter來把這個表中的資料顯示到一個listView上,注意其中有"id as _id", 以及new String[]{"_id", "jokeContent"}.

ListView lv = getListView();

lv.setOnItemClickListener(this);

SQLiteDatabase db = .....;

Cursor result = db.query("jokesExport",
new String[]{"id as _id",
"jokeContent"}, null,
null, null,
null, null);

startManagingCursor(result);

if (result !=
null) {

SimpleCursorAdapter la =
new SimpleCursorAdapter(this, R.layout.customcell, result,
new String[]{"_id",
"jokeContent"}, new
int[]{R.id.mytext1, R.id.mytext2});

lv.setAdapter(la);

}

// 然後就能把這個已經存在的資料庫用listView顯示出來了

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.