SQLite
 sql >> Database >  >> RDS >> SQLite

SQlite Query in Android usando il cursore

Usa questo snippet:

String table = "tblsample";
String selection = "DefaultId =? OR Name=?";
String[] selectionArgs = new String[]{"567"};
String[] projection = new String[]{"DefaultId","Name"}; // if you want to fetch only these two columns 

Prima del tuo database.query :

database.query(true, table, projection, selection, selectionArgs, null, null, null, null);

Modifica i valori per distinto , limite , ordina per , avere e groupBy se ne hai bisogno.