Get actual query from SQLiteDatabase.Query()
How do you get the resulting query from the function SQLiteDatabase.Query(
) ?(or similar methods)
Eg:
sqliteDatabase.query("table_name",null,null,null,null,null,null);
will result in the execution of the query
select * from table_name;.
How do you get hold of this resulting query when you use the utility method?
No comments:
Post a Comment