viewing coredata with sqlite browser in xcode 5

后端 未结 3 1420
醉话见心
醉话见心 2020-12-20 13:26

Since upgrading to XCode 5, I am unable to view data in the sqlite file in my Applications Folder. The folder structure has changed somewhat but I can still find the correct

相关标签:
3条回答
  • 2020-12-20 13:27

    I suggest you to use CoreDataPro app for viewing your CoreData storage.
    My fork has minor improvement - alphabetical ordering of Simulator managed object models.

    0 讨论(0)
  • 2020-12-20 13:41

    I'm using SQLite Manager plugin in Firefox, it works pretty decent.

    You can get the plugin here https://addons.mozilla.org/en-US/firefox/addon/sqlite-manager/

    After you install the plugin you will see 'SQLite Manager' (with a database icon in blue color) item in Tools menu.

    0 讨论(0)
  • 2020-12-20 13:52

    In iOS 7 SQLite's Write-Ahead Logging is turned on by default. In this mode data is split into three files (.sqlite, .sqlite-shm, .sqlite-wal). I've seen that some SQLite viewers ignore .sqlite-shm and .sqlite-wal files, thus not showing proper data.

    0 讨论(0)
提交回复
热议问题