1

What is the change that i need to do to implement an Iphone Database (.sqlite) to my android project?

Thanks for help

dirko
  • 173
  • 1
  • 4
  • 13
  • Do you wish to create a similar database in Android from ground up or just want to import it in your Application? – Samuh Feb 23 '11 at 16:24

2 Answers2

1

Android also uses SQLite, so same DB should work.

ferostar
  • 7,074
  • 7
  • 38
  • 61
  • I have just copy .sqlite file from the iphone to android assets folder and use that database in my android app. But it get crashed. – Shreyash Mahajan Jan 18 '13 at 04:19
1

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

Community
  • 1
  • 1
Samuh
  • 36,316
  • 26
  • 109
  • 116