91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android中SQLite如何使用

發布時間:2021-06-26 15:41:37 來源:億速云 閱讀:165 作者:Leah 欄目:移動開發

本篇文章給大家分享的是有關Android中SQLite如何使用,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

1、模糊查詢的陷阱

cursor = db.rawQuery("select * from song where song_title like '?%' ", selectionArgs);

這行代碼中由于占位符 ? 在單引號內,因此不會被當做占位符,而是對?進行了模糊查找,會產生類似如下報錯:

android.database.sqlite.SQLiteException: bind or column index out of range: handle 0x3418b0

解決方法:

cursor = db.rawQuery("select * from song where song_title like '" + selectionArgs[0] + "%'", selectionArgs);

2、cursor.getString(0)方法的陷阱

cursor = db.rawQuery("select song_singer from song group by song_singer having count(*)<2 ", null); 2 cursor.moveToFirst(); 3 for ( int i= 0; i<cursor.getCount(); i++ ) 4 { 5 str_ge_shou_auto[i] = cursor.getString(0); 6 System.out.println("str_ge_shou_auto[i] is "+str_ge_shou_auto[i]); 7  cursor.moveToNext(); 8 } 9 cursor.close();

以上代碼可以正確實現從在database中返回的cursor中讀取數據,但以下代碼會出現問題

cursor = db.rawQuery("select * from song where song_title like '" + selectionArgs[0] + "%'", null); 2 System.out.println(cursor.getString(0));

會出現類似這個錯誤:android.database.CursorIndexOutOfBoundsException: Index -1 requested, with a size of 1

解決方法:

cursor = db.rawQuery("select * from song where song_title like '" + selectionArgs[0] + "%'", null); 2 cursor.moveToFirst(); 3 System.out.println(cursor.getString(0));

關鍵就是這句 cursor.moveToFirst();  

當然使用 cursor.getString(0); 方法之后cursor并不會moveToNext

而對于SimpleCursorAdapter而言,則不需先進行cursor.moveToFirst();

3、SimpleCursorAdapter的 _id 陷阱

使用SimpleCursorAdapter封裝Cursor時要求底層數據表的主鍵列的列名為_id,因為SimpleCursorAdapter只能識別列名為_id的主鍵

以下代碼會報錯  java.lang.IllegalArgumentException: column &lsquo;_id&rsquo; does not exist

cursor = db.rawQuery("select song_singer from song where song_singer like '"+selectionArgs[0]+"%' group by song_singer", null); 2 SimpleCursorAdapter simple_adapter = new SimpleCursorAdapter( 3 MusicLookup.this , R.layout.music_lookup_singer_item, cursor 4 , new String[]{"song_singer"} 5 , new int[]{R.id.song_singer_lookup_singer});

解決方法:

cursor = db.rawQuery("select * from song where song_singer like '"+selectionArgs[0]+"%' group by song_singer", null); 2 SimpleCursorAdapter simple_adapter = new SimpleCursorAdapter( 3 MusicLookup.this , R.layout.music_lookup_singer_item, cursor 4 , new String[]{"song_singer"} 5 , new int[]{R.id.song_singer_lookup_singer});

要使用SimpleCursorAdapter,則不要在SQL語句中進行column的選擇,而是在 new SimpleCursorAdapter(...) 的時候進行對需要的column的選擇

4、關于 AutoCompleteTextView 與 SQLite 關聯數據源的陷阱

AutoCompleteTextView的使用需要ArrayAdapter 適配器來提供數據源,一般都使用 new ArrayAdapter<String>  從字符串的對象數組中得到數據構成ArrayAdapter,對于靜態的字符串對象數組來說,這只需初始化時直接寫入數據就行,類似這樣:

private String[] test = {"a","ab","abc"};

這樣便不會引起 “元素數<數組長度” 的問題,然而如果像下面這樣:

private String[] test = new String[100]; 2 ...... 3 test[0] = "a"; 4 test[1] = "ab"; 5 test[2] = "abc"; 6 ......

這就會引起 “元素數<數組長度” 的問題,雖然不會報錯,但使用

ArrayAdapter<String> array_ge_ming = new  ArrayAdapter<String>(MusicLookup.this,  android.R.layout.simple_dropdown_item_1line, test);

來初始化ArrayAdapter,并把ArrayAdapter和AutoCompleteTextView關聯后,你會發現,你輸入時并不會有自動匹配。

從SQLite得來的數據是動態的,是不能對字符串對象數組進行事先的靜態初始化的,為了解決這個問題,我使用了一下方法:

private String[] str_ge_ming_auto; //聲明時先不初始化 ......  2 try{  3 cursor = db.rawQuery("select song_title from song", null);  4 cursor.moveToFirst();  5 System.out.println("cursor.getCount() is "+cursor.getCount());  6 str_ge_ming_auto = new String[cursor.getCount()];   //利用從SQLite返回的Cursor對象的getCount()方法得到需要的數組長度  7 for ( int i= 0; i<cursor.getCount(); i++ )  8 {  9 str_ge_ming_auto[i] = cursor.getString(0); 10 System.out.println("str_ge_ming_auto[i] is "+str_ge_ming_auto[i]);  //一個個賦值 11 cursor.moveToNext(); 12 } 13 cursor.close(); 14  15 System.out.println("str_ge_shou_auto finish"); 16 }catch(SQLiteException  se){ 17 db.execSQL("create table song(_id integer primary key autoincrement," + "song_num varchar(5),"   + "song_title varchar(20)," + "song_singer varchar(10)," + "song_info varchar(20));"); 18 }

以上就是Android中SQLite如何使用,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

三亚市| 万荣县| 常熟市| 皋兰县| 洛扎县| 泸西县| 余江县| 中宁县| 大庆市| 巴马| 友谊县| 井研县| 黄陵县| 伊春市| 横峰县| 宽甸| 黄山市| 汤阴县| 民乐县| 舟曲县| 科技| 新河县| 法库县| 田东县| 筠连县| 西乌| 同德县| 略阳县| 全椒县| 中超| 建始县| 长兴县| 建水县| 长春市| 长白| 铅山县| 玛多县| 崇仁县| 吴堡县| 徐州市| 通城县|