Can someone point me to documentation on the SQLite db? So far I have only found the sample SQLiteBooks sample, which is useful but I imagine there must be some more thorough reference material online, though I haven't found it.
As far as the SQLiteBooks sample goes, I have some questions:
- the sample populates the initial data by means of SQL DDL statements (inserts). Is this common? My app has lots of data to load into the database, I was thinking it would be easier for me to store it as an xml document as a resource in my bundle somehow, then parse that via sax on startup and insert into the DB. Any thoughts?
As far as the SQLiteBooks sample goes, I have some questions:
- the sample populates the initial data by means of SQL DDL statements (inserts). Is this common? My app has lots of data to load into the database, I was thinking it would be easier for me to store it as an xml document as a resource in my bundle somehow, then parse that via sax on startup and insert into the DB. Any thoughts?