My Database table:
Column1 Column2 Column3
First Col Second Col Third Col
First Row First Row First Row
Second Row Second Row Second Row
Third Row Third Row Third Row
Four Row Four Row Four Row
Fifth Row Fifth Row Fifth Row
I am trying below queries:
First Query:
String q = "select * from " + tableName + " LIMIT 2 OFFSET 3 ";
sqlDB.rawQuery(q,null);
Second Query:
sqlDB.query(q, null,null, null, null, null, null, "3,2");
Both the queries giving me below result:
First Col Second Col Third Col
First Col Second Col Third Col
Instead of below result:
Third Row Third Row Third Row
Four Row Four Row Four Row
Am i missing something or doing wrong? to get this result.