即使PRAGMA停用,仍会写日志日志

时间:2014-02-18 17:17:54

标签: android android-sqlite

我尝试通过Android应用在我的SQLite数据库中停用我的日记。 我没有成功。使用以下代码时,仍会写入日志文件。 任何提示?

            mydb= SQLiteDatabase.openDatabase(mydbpath, null, SQLiteDatabase.OPEN_READWRITE);


            // Pragma Statements to boost the delete and insert
            mydb.rawQuery("PRAGMA journal_mode=OFF",null);
            mydb.rawQuery("PRAGMA synchronous=OFF",null);

            String sDeleteStatement="Delete from texts where id in ( select ids ..... from othertable";
            mydb.execSQL(sDeleteStatement);

0 个答案:

没有答案