關於SQLite資料列表的讀取——寫部落格時不好的風氣

來源:互聯網
上載者:User

最近由於功能需求,用到了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());       }      }  

 

上面代碼中沒有傳回值,僅作示範使用!

其實文章轉載出現錯誤沒有什麼可計較的,但是希望大家在發現錯誤後及時修改自己的原創部落格,養成良好的風氣。對自己的部落格負責,從自身做起!

 

相關文章

聯繫我們

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