I have used SQLCipher and SQLite3 module of NodeJS.
Recently, i updated Node version 8.x to 10.15.3 and SQLCipher 4.1.0 and the i got this error.
so, i install npm sqlite3 install again this commad
npm install sqlite3 --build-from-source --sqlite_libname=sqlcipher --sqlite=/usr/
After new sqlite3 module install, when i did select, insert ,create query to encrypt DB , i got a segmentation fault.
If i just use sqlcipher, there is no problem.
if i did query to NodeJS with plain DB, that is work.
But if i did query to NodeJS with encrypt DB, i got a segmentation fault…
Can i get some advice for solving this problem?