You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Cursor res = stores.searchInColumn(3, gid, -1); // Here we passed limit = 1. Thus it will return only one row data with the matched column value
Log.e("Ress","size "+res.getCount());
if (res != null) {
res.moveToFirst(); // Because here's only one row data
String desc = res.getString(4); //error here
String name = res.getString(5);
I get error Caused by: java.lang.ArrayIndexOutOfBoundsException: length=1; index=3
How i can read one row?
P.S I remember about V2 but I like this library and it’s convenient, in the new I don’t understand some points
The text was updated successfully, but these errors were encountered:
I get error
Caused by: java.lang.ArrayIndexOutOfBoundsException: length=1; index=3
How i can read one row?
The text was updated successfully, but these errors were encountered: