I have a sample application that contains the following line:
from pysqlcipher3 import dbapi2 as sqlcipher
It gives out the following error
from pysqlcipher3 import dbapi2 as sqlcipher
File "/usr/lib/python3.5/site-packages/pysqlcipher3/dbapi2.py", line 33, in
from pysqlcipher3._sqlite3 import *
ImportError: /usr/lib/python3.5/site-packages/pysqlcipher3/_sqlite3.cpython-35m-arm-linux-gnueabihf.so: undefined symbol: sqlite3_enable_load_extension
I am not sure why I get this error. Can anyone explain the issue and any solution for the same.
I have a sample application that contains the following line:
from pysqlcipher3 import dbapi2 as sqlcipher
It gives out the following error from pysqlcipher3 import dbapi2 as sqlcipher File "/usr/lib/python3.5/site-packages/pysqlcipher3/dbapi2.py", line 33, in
from pysqlcipher3._sqlite3 import *
ImportError: /usr/lib/python3.5/site-packages/pysqlcipher3/_sqlite3.cpython-35m-arm-linux-gnueabihf.so: undefined symbol: sqlite3_enable_load_extension
I am not sure why I get this error. Can anyone explain the issue and any solution for the same.