X-Git-Url: https://git.ktnx.net/?p=mobile-ledger.git;a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjava%2Fnet%2Fktnx%2Fmobileledger%2Futils%2FMLDB.java;h=a7e124d7735ce8d83049295eac380f172f7db391;hp=328d8c978aa04cac0d29c12143cd74e6e71f523f;hb=abd5a19252bf81af903c3406132030e3ad63704f;hpb=ffc5af343abba93ec94157aee7b46bc480d49bc4 diff --git a/app/src/main/java/net/ktnx/mobileledger/utils/MLDB.java b/app/src/main/java/net/ktnx/mobileledger/utils/MLDB.java index 328d8c97..a7e124d7 100644 --- a/app/src/main/java/net/ktnx/mobileledger/utils/MLDB.java +++ b/app/src/main/java/net/ktnx/mobileledger/utils/MLDB.java @@ -45,9 +45,6 @@ import java.io.InputStream; import java.io.InputStreamReader; import java.util.Locale; -import static net.ktnx.mobileledger.utils.MLDB.DatabaseMode.READ; -import static net.ktnx.mobileledger.utils.MLDB.DatabaseMode.WRITE; - public final class MLDB { public static final String ACCOUNTS_TABLE = "accounts"; public static final String DESCRIPTION_HISTORY_TABLE = "description_history"; @@ -55,29 +52,22 @@ public final class MLDB { @NonNls public static final String OPT_PROFILE_UUID = "profile_uuid"; private static final String NO_PROFILE = "-"; - private static MobileLedgerDatabase helperForReading, helperForWriting; + private static MobileLedgerDatabase dbHelper; private static Application context; private static void checkState() { if (context == null) throw new IllegalStateException("First call init with a valid context"); } - public static synchronized SQLiteDatabase getDatabase(DatabaseMode mode) { + public static synchronized SQLiteDatabase getDatabase() { checkState(); - if (mode == READ) { - if (helperForReading == null) helperForReading = new MobileLedgerDatabase(context); - return helperForReading.getReadableDatabase(); - } - else { - if (helperForWriting == null) helperForWriting = new MobileLedgerDatabase(context); - return helperForWriting.getWritableDatabase(); - } - } - public static SQLiteDatabase getReadableDatabase() { - return getDatabase(READ); - } - public static SQLiteDatabase getWritableDatabase() { - return getDatabase(WRITE); + SQLiteDatabase db; + + if (dbHelper == null) dbHelper = new MobileLedgerDatabase(context); + db = dbHelper.getWritableDatabase(); + + db.execSQL("pragma case_sensitive_like=ON;"); + return db; } static public int getIntOption(String name, int default_value) { String s = getOption(name, String.valueOf(default_value)); @@ -101,7 +91,7 @@ public final class MLDB { } static public String getOption(String name, String default_value) { Log.d("db", "about to fetch option " + name); - SQLiteDatabase db = getReadableDatabase(); + SQLiteDatabase db = getDatabase(); try (Cursor cursor = db.rawQuery("select value from options where profile = ? and name=?", new String[]{NO_PROFILE, name})) { @@ -122,7 +112,7 @@ public final class MLDB { } static public void setOption(String name, String value) { Log.d("option", String.format("%s := %s", name, value)); - SQLiteDatabase db = MLDB.getWritableDatabase(); + SQLiteDatabase db = MLDB.getDatabase(); db.execSQL("insert or replace into options(profile, name, value) values(?, ?, ?);", new String[]{NO_PROFILE, name, value}); } @@ -140,8 +130,7 @@ public final class MLDB { public static void hookAutocompletionAdapter(final Context context, final AutoCompleteTextView view, final String table, final String field, - final boolean profileSpecific, - final View nextView, + final boolean profileSpecific, final View nextView, final DescriptionSelectedCallback callback) { String[] from = {field}; int[] to = {android.R.id.text1}; @@ -178,7 +167,7 @@ public final class MLDB { params = new String[]{str, str, str, str}; } Log.d("autocompletion", sql); - SQLiteDatabase db = MLDB.getReadableDatabase(); + SQLiteDatabase db = MLDB.getDatabase(); try (Cursor matches = db.rawQuery(sql, params)) { int i = 0; @@ -211,18 +200,16 @@ public final class MLDB { MLDB.context = context; } public static void done() { - if (helperForReading != null) helperForReading.close(); - - if ((helperForWriting != helperForReading) && (helperForWriting != null)) - helperForWriting.close(); + if (dbHelper != null) { + Log.d("db", "Closing DB helper"); + dbHelper.close(); + } } - - public enum DatabaseMode {READ, WRITE} } class MobileLedgerDatabase extends SQLiteOpenHelper implements AutoCloseable { public static final String DB_NAME = "MoLe.db"; - public static final int LATEST_REVISION = 18; + public static final int LATEST_REVISION = 20; private final Application mContext;