sqlite database disk image malformed on iPhone SDK

前端 未结 3 1779
無奈伤痛
無奈伤痛 2021-01-12 07:58

I\'m having an issue with a new application on the iPhone SDK using SQLite as the DB backend.

Occasionally, my app will stop loading data to my UITableViews and afte

3条回答
  •  无人共我
    2021-01-12 08:55

    Depends on how SQLite is compiled, it may or may not be thread-safe. If you're using the built-in one, it may not have the compile-time options you're looking for.

    For our app, we had to roll our own SQLite to add full text search. Take a look at this page.

提交回复
热议问题