this pretty simple method call is as follows
mDataBase.query(TABLE_NAME, columns, null, null, null, null, null);
where, TABLE_NAME = your SQLite table name and the columns are a string array like
String columns[] = new String[] { "Column1" };
If you need all the columns, you can pass null
for the second argument.
Correction: As mentioned by several others, there is no URI.
GSree
source share