Sqlite建立表一定要聲明欄位類型(ContentProvider查詢的小問題)

來源:互聯網
上載者:User

標籤:style   color   os   使用   ar   strong   資料   sp   問題   

用ContentProvider查詢,有時候不太靈。。就像下面的代碼,資料庫中存在該資料,但是查不出來。原因可能是該欄位沒有宣告類型。。

如下:

 

private final static String SQL_CREATE_TABLE_INSTALLED =
     "CREATE TABLE if not exists " + TABLE_INSTALLED + " ( "
              + "id not null, "
              + "name text not null, "
              + "primary key(id)"
              +")";

這樣的id欄位沒有任何問題。使用下面的contentprovide進行查詢會查不到資料。。。

ContentResolver resolver = context.getContentResolver();
   Uri uri = getContentUri();
   Cursor cursor = resolver.query(uri, DataColumns.ALL, DataColumns.ID
     + "=?", new String[] { Integer.toString(id) },
     DEFAULT_ORDER);

 

這樣的小問題還真是讓人無解。

 

用下面的方法可以查得到。直接用參數查。

 

Cursor cursor = resolver.query(getContentUri(), DataColumns.ALL,
     DataColumns.ID + " = " + id, null, DEFAULT_ORDER);

 

所以,寫代碼還是得細心,在建立表時候,注意各個欄位類型。sqlite不會進行檢查欄位類型的。

 

 

 

Sqlite建立表一定要聲明欄位類型(ContentProvider查詢的小問題)

相關文章

聯繫我們

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