我想知道是否可以看到SQLiteOpenHelper生成的SQL-Statment。这是一些示例代码:
String selection = "USER_LOGIN=?";
String[] sectionArgument = new String[]{"username"};
String[] columns = new String[]{"USER_LOGIN", "USER_PASS"};
Cursor c = mDatabase.query("ACCOUNT_TABLE", columns, selection, sectionArgument, null, null, null);
现在如何才能看到生成的SQL-Statment形式为query-Method
。