I’m new to iPhone dev and am using sqlite3 but there seem to be two different sqlite libraries available: libsqlite3.0.dylib and libsqlite3.dylib
Which is the best to use? What’s the difference?
Any help appreciated.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The
libsqlite3.dyliblibrary will be a symbolic link to the latest version supported in your Xcode installation. So whenever you install the latest Xcode and recompile your app, you’ll get the latest 3.x library installed for free.This can include both performance and feature enhancements, but can also include new bugs. You could pick the specific version, i.e.
libsqlite3.0.dylib, if you want to play it safe.