程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> cursor-android在數據庫中查找相應的數據時出錯。

cursor-android在數據庫中查找相應的數據時出錯。

編輯:編程綜合問答
android在數據庫中查找相應的數據時出錯。

Cursor cursor=myDatabase.rawQuery("select ids,title,times from goodtime" , null);
cursor.moveToFirst();
while(!cursor.isAfterLast()){
int id=cursor.getInt(cursor.getColumnIndex("ids"));
String title=cursor.getString(cursor.getColumnIndex("title"));
String times=cursor.getString(cursor.getColumnIndex("times"));
System.out.println(title);
System.out.println(cursor.getColumnIndex("bj"));
String beijing=cursor.getString(cursor.getColumnIndex("bj"));

    上面是我的代碼,title還是可以正常查找的,但是bj這個變量的值確實-1,同時報出錯誤java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.notebook/com.example.notebook.Notebook}: java.lang.IllegalStateException: Couldn't read row 0, col -1 from CursorWindow.  Make sure the Cursor is initialized correctly before accessing data from it.
    這是我創建的表:
    String ml="create table goodtime(ids integer PRIMARY KEY autoincrement,title text,content text,times text,ptpath text,mppath text,vdpath text,islock integer,password text,bj text)";
    arg0.execSQL(ml);
    網上說有可能大小寫不對,我仔細查看了變量名都是一致的啊
    求各位大神幫我看一下,指點一下我,先謝謝了!

最佳回答:


看下你的數據庫中有沒有對應的記錄

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved