Domanda

What is the best way to close (and reopen) da Database using greenDao ORM?

daoMaster.getDatabase().close()

or

daoSession.getDatabase().close()

and how to reopen?

Altri suggerimenti

This is what I did.

private SQLiteDatabase db; //Global Variable.

Initialize your helper and SQLiteDatabase in onResume method.

DaoMaster.DevOpenHelper helper = new DaoMaster.DevOpenHelper(this,"YourDBName",null);
db = helper.getWritableDatabase();

close Database onPause

db.close();
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top