I have an app that use a sqlite database. For every query (10 query selects in 10 differents methods) i open the database. It is a good choice to open db when the application is started and close it when application close? For example, creating an static reference to my DB object in MyApplication class (extends Application).
Thanks for your advices.