I would like to know how to manipulate PostgreSQL data using CoreData using Swift2 on MacOS.
CoreData seems to support SQLite, but how do I replace (or rewrite) this part with PostgreSQL?
I would like to be able to use CoreData to operate RDBMS.
If anyone understands, please let me know.
macos swift2
Since CoreData is not a generic ORM library, switching backend DBs is basically not possible.
CoreData has four backend options: XML, binary format, SQLite and in-memory (XML is not available on iOS).
© 2024 OneMinuteCode. All rights reserved.