Enable SQLite secure_delete pragma.

This commit is contained in:
Sergio Lopez 2014-03-02 12:42:50 +01:00
parent ea8f92441c
commit 9f63be65bc
1 changed files with 1 additions and 0 deletions

View File

@ -69,6 +69,7 @@ public class MessagesStorage {
}
try {
database = new SQLiteDatabase(cacheFile.getPath());
database.execute("PRAGMA secure_delete = ON");
if (createTable) {
database.executeFast("CREATE TABLE users(uid INTEGER PRIMARY KEY, name TEXT, status INTEGER, data BLOB)").stepThis().dispose();
database.executeFast("CREATE TABLE messages(mid INTEGER PRIMARY KEY, uid INTEGER, read_state INTEGER, send_state INTEGER, date INTEGER, data BLOB, out INTEGER, ttl INTEGER)").stepThis().dispose();