I want to use the raspberry pi to send values to the Oracle11g database, but when I run import cx_Oracle syntax for that process, I get the following error:
import cx_Oracle
It means, that you have not installed module cx_Oracle.
cx_Oracle
First you must install Oracle driver with PIP:
PIP
python -m pip install cx_Oracle --upgrade
Hope it helped you.