1

I am looking for a library which handles local db in android like FMDB https://github.com/ccgus/fmdb
in ios.

Where every data which I get from parsing json is stored in the local db and refreshed when a button is clicked with new set of data.

Something which takes care of all the heavy duty work .

Thanks in Advance.

James Patrick
  • 273
  • 4
  • 19

1 Answers1

3

The link you provided above is about a simple wrapper around SQLite. Such API is built-in in Android.

Reading your comments anyway I think what you're looking for is a ORM implementation in Android. There are several libraries out there, but the two most well-known are:

  • ORMLite: it's a Java library, but runs very well on Android too
  • GreenDAO: it'sa fast and lightweight ORM implementation

I have used both in the past, and each one has its pros and cons. I can only suggest you to read carefully the set of features of both and to select the one fits better for you.

a.bertucci
  • 12,142
  • 2
  • 31
  • 32