David
David

Reputation: 2810

Is it safe to query Core Data database via sqlite

Can sqlite API be used to access the database that core data is using? The data that I'd be querying isn't being updated, its relatively static. But I need to use joins and can't do that with Core Data.

Is it safe or are there issues doing so.

Upvotes: 0

Views: 100

Answers (1)

Carl Veazey
Carl Veazey

Reputation: 18363

I would only do this for testing outside of the application. You never know when the schema will change which could break your app.

Upvotes: 1

Related Questions