views:

29

answers:

2

How could I manage Large online database on Iphone? Should I have use other than SQLite3?

A: 

This can done not using with SQLite3 whereas we use JSON (Java Script Object Notification) for that or NSXMLParser.

Arvind
A: 

If the database is online meanig on a server, you can access it via webservices (RESt/JSON for example is a common option ) and not use SQLite at all. If you want a local cache of the data, you can use either property lists (XML) or SQLite locally on the device ( both methods can be easily managed with CoreData) .

AlePani