vote up 2 vote down star
2

Anyone out there statically linking sqlite (as opposed to using the dynamic linking)?

I am having issues with users with jailbroken phones not having the same version of sqlite that the stock iPhone assumes (and hence causing crashes). I'm assuming that staticly linking a known version of sqlite in my app is the answer...

flag
I thought sqlite was staticly linked on non jail broken iphones, I'm a bit confused... – hhafez Mar 10 at 4:10
Perhaps I'm confused, but the process of adding sqlite to an iPhone app via Xcode involves linking to libsqlite3.0.dylib, which is a dynamic library, right? On some jailbroken devices, the installed version of sqlite is not the same as the one my app was assuming... I think. Help anyone? – winksalot Mar 10 at 4:31

3 Answers

vote up 1 vote down

You could download the source and create a static library yourself?

link|flag
Right... Thanks for prompting me to look again... I thought at first that this would be painful, but the "amalgamation" source version was only two headers and a .c file. Integrated like a charm in Xcode... hopefully I'll soon hear back from beta testers it fixed the jailbroken phone crashes. – winksalot Mar 10 at 6:25
vote up 1 vote down

I needed to have Full Text support (with FTS3 module)

All I did was grab the Sqlite Amalgamation from here: http://www.sqlite.org/amalgamation.html and dropped the .h and .c into my project and it works.

link|flag
vote up 1 vote down

Have you found the exact source of the crash? Are you sure it's not a bug in your code that's exposed by the different version of SQLite?

When I came across a similar problem to this I found that it was actually a bug in my code -- I was sqlite3_resetting a prepared statement too early.

link|flag

Your Answer

Get an OpenID
or

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