I am developing an app using MonoMac which uses Sqlite database as a data storage. I am using classes from Mono.Data.Sqlite namespace to access the database. On OS X 10.7.4 SqliteConnection.SqliteVersion property reports 3.6.23.1 (released on 2010 March 30) Running "select sqlite_version() AS sqlite_version" in sqlite shell reports 3.7.4. Ideally I would like to use the latest version of Sqlite available currently 3.7.14.1.
How do I do that? I think I need to get dylib file of the new Sqlite version and put it in the same folder as my application. Is that correct? Where do I get the dylib file for the latest version? How do I distribute it with my app?
Thanks