My Android app is reading and writing to a local SQLite DB from a few different Activities and a Service. Pretty standard. But I\'m not happy with the way I\'ve got all the DB d
We have been tuning ORMLite on Android for a while now and it is working well. ORMLite supports Android with native database calls and also supports other databases via JDBC. You annotate your classes/fields and use base DAO classes to persist to SQLite.
DatabaseHelper
which helps create an update your database. Your activities extend OrmLiteBaseActivity
(or service or tab) which gives access to helper and DAOs.Hope this is somewhat helpful.