Is it possible to make a big 50MB database native on the iPhone? So that it can be searched very quickly in a smart way? With SQlite?
|
|
There's some talk to a SQLite for iPhone SDK in this article. It uses FMDB, which is a cocoa wrapper fro SQLite3 |
|||
|
|
|
|
Yes, you can use SQLite on the iPhone. Since the database is just a file, you can add the 50 MB file to your application, and that's it. SQLite's performance on the iPhone is good, in my experience, although YMMV depending on your exact table layout and indexes. In my opinion, it's definitely worth checking out the FMDB wrapper suggested by Galwegian; it makes the programming quite a bit easier than directly using SQLite library itself. Although 50 MB is way below the limit, be aware that a 50 MB application will take some time to download for people, and people cannot install it from the AppStore without either a WiFi connection or iTunes. |
||
|
|
|
|
SQLite is part of the supported API available on the iPhone. Also, 50MB isn't really a "large" database. SQLite will handle it without even blinking. |
||
|
|
|
|
By all means use SQLite. I find it very easy to use. If you need some sample code check out http://tetontech.wordpress.com/2008/06/28/iphone-objective-c-sqlite-development/ If you would like an easy to use wrapper check out QuickConnectiPhone. This framework has a wrapper that you could pull out and use. https://sourceforge.net/projects/quickconnect/ |
||
|
|
|
|
Check out StepSqlite PL/SQL compiler for Sqlite on iPhone http://www.metatranz.com/stepsqlite It makes writing database interfaces for Sqlite super easy - use variables directly in SQL - no more writing binds by hand, you can write stored procedures, functions, packages, triggers (with procedural code),cursors, even do date operations easily using built in operators - all the power of Oracle PL/SQL in the size of Sqlite! |
||
|
|
