我尝试通过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);