SQLiteOpenHelper查询 - 如何显示SQL语句

时间:2015-04-14 13:10:26

标签: java android sqliteopenhelper sqlcipher

我想知道是否可以看到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

1 个答案:

答案 0 :(得分:1)

要查看发布到SQLCipher数据库的查询,请参阅PRAGMA cipher_profile命令,该命令将允许您以毫秒为单位捕获查询及其各自的执行时间。