2015-08-03 01:17:02 +02:00
|
|
|
package nodomain.freeyourgadget.gadgetbridge.database;
|
|
|
|
|
|
|
|
import android.database.sqlite.SQLiteDatabase;
|
|
|
|
import android.database.sqlite.SQLiteOpenHelper;
|
|
|
|
|
|
|
|
import nodomain.freeyourgadget.gadgetbridge.GBApplication;
|
2016-05-16 23:00:04 +02:00
|
|
|
import nodomain.freeyourgadget.gadgetbridge.entities.DaoSession;
|
2015-08-03 01:17:02 +02:00
|
|
|
|
2016-05-16 23:00:04 +02:00
|
|
|
public interface DBHandler extends AutoCloseable {
|
2016-04-29 23:12:30 +02:00
|
|
|
/**
|
|
|
|
* Closes the database.
|
|
|
|
*/
|
2016-05-16 23:00:04 +02:00
|
|
|
void closeDb();
|
2016-05-17 00:51:00 +02:00
|
|
|
void openDb();
|
2016-04-29 23:12:30 +02:00
|
|
|
|
2015-10-23 15:11:21 +02:00
|
|
|
SQLiteOpenHelper getHelper();
|
2015-08-03 01:17:02 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Releases the DB handler. No access may be performed after calling this method.
|
|
|
|
* Same as calling {@link GBApplication#releaseDB()}
|
|
|
|
*/
|
2016-05-16 23:00:04 +02:00
|
|
|
void close() throws Exception;
|
2015-08-03 01:17:02 +02:00
|
|
|
|
2016-05-17 00:51:00 +02:00
|
|
|
SQLiteDatabase getDatabase();
|
2016-02-09 17:52:21 +01:00
|
|
|
|
2016-05-16 23:00:04 +02:00
|
|
|
DaoSession getDaoSession();
|
2015-08-03 01:17:02 +02:00
|
|
|
}
|