views:

213

answers:

1

I currently have an sqlite3 database in my iPhone application. The database has grown to 10MB+ on its own with all of the data I've thrown at it so far. Some of the data I'd rather not have part of the App Bundle as well.

If I provide just the schema, what's your favorite way of syncing all of the tables over HTTP?

A: 

use a tag filed to identify whether the record was synced . both iphone side database and server side.

Robin