Question

I am converting an iphone app to android?

1- Is there anything similar to the "iphones core data" on android sdk?

2- If not, does android support using sqlite databases?

Was it helpful?

Solution

here you can see the documentation of the sqlite database in android:

http://developer.android.com/reference/android/database/sqlite/SQLiteDatabase.html

Here is a good descirption of various possibilities on how to store data in android:

http://developer.android.com/guide/topics/data/data-storage.html

OTHER TIPS

For other readers that are looking for a Core Data replacement in Android, I suggest an ORM tool like greenDAO. It allows you work with Java objects and uses SQLite as its storage back end.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top