Yes, I was googling exactly that ^^.��I will check when I have some time.��

Maybe the problem comes from the installed ubuntu in the server, which is an ubuntu12 (it will be two and a half years old soon).

El Tue Jan 20 2015 at 5:25:50 PM, Torsten Bergmann <astares@gmx.de> escribi��:
>It fails because:
>��
>ioFindExternalFunctionIn(sqlite3_close_v2, 0x87f9b78):
>�� ./sqlite3.so: undefined symbol: sqlite3_close_v2

Maybe you installed an older one, there are two variations for
closing the DB:

�� int sqlite3_close(sqlite3*);
�� int sqlite3_close_v2(sqlite3*);

See https://www.sqlite.org/c3ref/close.html

Maybe you have an outdated lib with only the first one?
��
Thx
T.��