>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.
