I wrote a program in eclipse using SQLite.
When I run it,it works correctly in emulator(API 7) and also works correctly when i run it on tablet with android version 2.2.
But when i try to run it in mobile with android version 2.3,it doesn't work and give me this error:
error compiling :String query = "SELECT Cart_ID from Tbl order by Cart_ID DESC limit 1"
my main code:
public void insertQuote(String Quote,int Price1,int Count1,int GoodIDEnter )
{
String query = "SELECT Cart_ID from Tbl_Cart order by Cart_ID DESC limit 1";
Cursor c = db.rawQuery(query, null);
if (c != null && c.moveToFirst())
{
goodid = c.getLong(0);
}
}
What should i do?