最近由於功能需求,用到了sqlite資料庫。在網上找到了很多有用的知識,儘管很多文章都是一樣的,這裡大家都懂的!
在資料讀取的功能中,不管是哪個版本的文章,統一使用了while的方法讀取,代碼如下:
/** * 查詢列表 * @throws Exception */ public void selectList()throws Exception{ DBHelper dbHelper = new DBHelper(this.getContext()); dbHelper.open(); Cursor returnCursor = dbHelper.findList("user",new String[] {"id","username", "password"}, "username = 'test'", null,null, null, "id desc"); while(returnCursor.moveToNext()){ String id = returnCursor.getString(returnCursor.getColumnIndexOrThrow("id")); String username = returnCursor.getString(returnCursor.getColumnIndexOrThrow("username")); String password = returnCursor.getString(returnCursor.getColumnIndexOrThrow("password")); } }
也許大家在自己的應用程式中,已經修改過以上代碼,但估計也有不少的如我一般的糊塗蟲。原封不動的copy了!那麼問題就出現了,我做的是安卓的檔案斷點續傳。測試結果,總有那麼一個檔案傳不到伺服器。原因就在這個while上,while的條件直接是讀取下一條是否成功,如果成功了,那麼此刻遊標的位置就在下一條資料的位置上了,那麼就造成了永遠讀取不到第一條資料。
本來這個問題無可厚非,大家估計調試後都改正過來了,但是網上竟然是鋪天蓋地,以訛傳訛,看了十幾篇文章中,竟然沒有一篇改正過來的。雖然很贊同大家的不吝分享,但是這種風氣畢竟是不好的。
貼上修改後代碼:
/** * 查詢列表 * @throws Exception */ public void selectList()throws Exception{ DBHelper dbHelper = new DBHelper(this.getContext()); dbHelper.open(); Cursor returnCursor = dbHelper.findList("user",new String[] {"id","username", "password"}, "username = 'test'", null,null, null, "id desc"); if(returnCursor.moveToFirst()) { do{ String id = returnCursor.getString(returnCursor.getColumnIndexOrThrow("id")); String username = returnCursor.getString(returnCursor.getColumnIndexOrThrow("username")); String password = returnCursor.getString(returnCursor.getColumnIndexOrThrow("password")); } while(returnCursor.moveToNext()); } }
上面代碼中沒有傳回值,僅作示範使用!
其實文章轉載出現錯誤沒有什麼可計較的,但是希望大家在發現錯誤後及時修改自己的原創部落格,養成良好的風氣。對自己的部落格負責,從自身做起!