Have a Database that i got from an Iphone project (.sqlite)
What is the change that i need to do to implement 开发者_JAVA技巧an Iphone Database (.sqlite) to my android project?
Thanks for help
Android comes with SQLite3, you can either create your database from ground up or you can ship your application with a pre-populated database.
The following might prove useful:
1. SQLite Basics
2. Ship Android application with database
3. Using your own SQLite database in Android applications
Android also uses SQLite, so same DB should work.
精彩评论