android sqlite android.database.CursorIndexOutOfBoundsException: Index 5 requested, with a size of 5
摘要:
Cursor c = db.query("user",null,null,null,null,null,null);//查询并获得游标if(c.moveToFirst()){//判断游标是否为空for(int i=0;i<c.getCount();i++){c.move(i);//移动到指定记录String username = c.getString(c.getColumnIndex("username");String password = c.getString(c.getColumnIndex("password")); 阅读全文
摘要:
今天在学习android SQLite出现android sqlite no such table错误提示,提示的意思我没有创建我要插入的表,网上也没有搜索一下,也尝试了,发现还是没有解决到我的问题,我最后通过进入DDMS-File Explorer查看我应用下面有没有创建database,发现已经存在,我将database输出,通过其他工具打开发现里面没有我要插入的表。解决办法只是需要文件删除后就行,让应用程序重新建过。 阅读全文