I'm getting started with SQLite databases in an app I'm working on. I've not run into issues yet but one of the early steps from this tutorial is linking the SQLite3 framework. The tutorial calls for libsqlite3.0.dylib but I noticed another one libsqlite3.dylib. Is the latter just a symlink to the latest v3 library like the convention for package managers on UNIX or is there a difference?

Adam

link|improve this question
feedback

1 Answer

up vote 26 down vote accepted

Is the latter just a symlink to the latest v3 library like the convention for package managers on UNIX?

That’s it exactly.

link|improve this answer
Thanks Jeff - I wasn't sure and didn't want to assume either way. – earnshavian Dec 2 '10 at 5:11
Sorry, this means which one "should" be used in a project? – SG1 Mar 1 at 3:06
3  
Generally speaking, unless you have specific needs that are tied to the exact version of libsqlite3, you should use libsqlite3.dylib when linking. – Jeff Kelley Mar 1 at 15:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.