It is better to use light libs in Android applications such as greenDAO or Ormlite, greenDAO is an open source project that will help Android developers working with data stored in SQLite. SQLite is an amazing built-in relational database. However, development for this requires a lot of additional work. Writing SQL and analyzing query results are quite tedious tasks. greenDAO will do the work for you: it maps Java objects to database tables (often called ORMs). This way you can store, update, delete, and query Java objects with a simple object-oriented API. Save time and focus on real issues! Primary design goals greenDAOs
- Maximum performance (arguably the fastest ORM for Android)
- Easy to use APIs. High optimization for Android. Minimum memory. consumption
- The small size of the library, focuses on the main functions.
LOG_TAG
source share