我正在创建一个数据库,我需要从数据库中读取所有记录,但是我的程序在这个语句中不断崩溃:
newWord= db.getAllRecords();
我认为 getAllRecords() 存在问题,因为 Eclipse 表示没有错误。
public Cursor getAllRecords() {
db = dBHelper.getWritableDatabase();//obtains the writable database
return db.query(DATABASE_TABLE, new String[] { KEY_ROWID,KEY_WORD}, null, null, null, null, null);//the query used to obtain all records form the table
}
有任何想法吗?