iOS - Edit CoreData SQLite DB with Java
Is it possible to edit a CoreData SQLite database created by CoreData itself with Java? T开发者_运维知识库he problem I see is the relationships between tables... is there a library?
Thanks
Sure, it's a SQLite database and can be opened and edited by any tool that understands SQLite 3. The problem is that the table schema is undocumented and rather opaque, especially as you guessed when it comes to relationships. Editing the tables is generally not advisable, though occasionally it can be useful to inspect them. There are Mac OS X apps that will open a Core Data store if you provide a managed object model (e.g. http://christian-kienle.de/CoreDataEditor/) but that relies on the Mac's built-in Core Data library.
What are you actually trying to accomplish here?
精彩评论