Gadgetbridge/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/database/DBHandler.java

37 lines
938 B
Java
Raw Normal View History

package nodomain.freeyourgadget.gadgetbridge.database;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import nodomain.freeyourgadget.gadgetbridge.GBApplication;
2016-06-14 20:13:08 +02:00
import nodomain.freeyourgadget.gadgetbridge.entities.DaoMaster;
import nodomain.freeyourgadget.gadgetbridge.entities.DaoSession;
2016-06-14 20:13:08 +02:00
/**
* Provides lowlevel access to the database.
*/
public interface DBHandler extends AutoCloseable {
/**
* Closes the database.
*/
void closeDb();
2016-06-14 20:13:08 +02:00
/**
* Opens the database. Note that this is only possible after an explicit
* #closeDb(). Initially the db is implicitly open.
*/
2016-05-17 00:51:00 +02:00
void openDb();
SQLiteOpenHelper getHelper();
/**
2016-06-14 20:13:08 +02:00
* Releases the DB handler. No DB access will be possible before
* #openDb() will be called.
*/
void close() throws Exception;
2016-05-17 00:51:00 +02:00
SQLiteDatabase getDatabase();
DaoSession getDaoSession();
}