I am developing an android application using java with SQLite. The following code make the error:
String selectQuery = "SELECT * FROM User";
Cursor cursor = db.rawQuery(selectQuery, null);
I checked my program and I found that the cursor make unfortunatly error.
Please help from where is the error come??