robert
robert

Reputation: 127

Android Sqlite framework

I am searching for a flexible SQLlite framework for android. I was able to find ORMlite.

My Question: are there any other frameworks ?

Upvotes: 0

Views: 5241

Answers (2)

Vincent Cantin
Vincent Cantin

Reputation: 17262

There is also ActiveAndroid. I haven't try it yet, but it looks pretty simple and clean according to its documentation.

Upvotes: 1

Nicolas Jafelle
Nicolas Jafelle

Reputation: 2771

I always use ORMlite for Android. I think is the most lightweight and robust but you can give it a try to greenDAO, check this: http://greendao-orm.com/

Also you have Object DBs, like neodatis or db4o. But my recommendation is to stay with SQLite and a good ORM framework like ORMLite.

If you need to look at the DB structure in Eclipse you can install the Questoid plugin:

http://www.questoid.com/

Upvotes: 3

Related Questions