Android 對於Sqlite資料庫的操作 感覺到不可理解的地方 1

來源:互聯網
上載者:User

今天在學習Android操作Sqlite資料庫的時候,寫了一個如下的表:

String TableCreate = " create table " + tableName+ " (key_id integer primary key,key_name text,key_sex text) ";

但是在查詢的時候可以返回正常的Cursor(遊標)但是卻無法向外面輸出資料,不知道什麼原因,後來弄了半天才發現原來在表中必須得有_id這個項,否則不輸出資料,而且老是報如下錯誤:

列_id不存在 (column _id not exists)不知道是什麼原因,先記錄下來,以後慢慢發現一下,同時也希望知道的朋友留個言。

我的查詢語句如下:

Cursor cursor =  baseadapter.Select();if (cursor != null && cursor.getCount() > 0) {try{ListAdapter adapter = new SimpleCursorAdapter(this,R.layout.listviewitems, cursor, new String[] { "_id","key_name" }, new int[] { R.id.text1,R.id.text2});listview.setAdapter(adapter);}catch(Exception e){Log.i("errorerrorerroe", e.getMessage());}}

 

用_id就能正常返回,不用的話,就不能正常返回!

相關文章

聯繫我們

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