/** Close the Database-Connection */ public static void close() { dbHelper.close(); }
/** * Initialize the Database and the preferences * * @param context The Application-Context */ public static void init(final Context context) { dbHelper = new DatabaseHelper(context); database = dbHelper.getWritableDatabase(); }