Reputation: 39
Is there a way to update the built-in SQLite3 library in XCode? I'm using XCode 7.3 with iOS 9.3 SDK - this comes with SQLite3 library version 3.0 as it appears in the frameworks and libraries. I need to execute a certain command but it is only supported in SQLite3 version 3.9 and later.
Upvotes: 0
Views: 303
Reputation: 4772
What you want to do is integrate the FMDB Cocoapod:
pod 'FMDB/standalone' # FMDB with latest SQLite amalgamation source
That is absolutely your best option for working with SQLite conveniently in iOS. Enjoy!
Upvotes: 1