是否可以使用 2 个不同的光标来选择表格:
这是一张桌子1
Cursor b = myDbHelper.getSchoolType();
String def = b.getString(0);
这是另一张桌子
c = myDbHelper.getAllSchoolData();
String abc = c.getString(0);
我尝试使用两个游标从两个表中检索数据,但它显示错误:
android.database.CursorIndexOutOfBoundsException : Index -1 requested, with a size of 2
请帮助...感谢各种答案