Using Oracle with Python
Install the module
pip install cx_Oracle
Import the module
import cx_Oracle
Establish the connection
cn = cx_Oracle.connect('userid/password@servername')
#rest commands are same as MySQL
pip install cx_Oracle
Import the module
import cx_Oracle
Establish the connection
cn = cx_Oracle.connect('userid/password@servername')
#rest commands are same as MySQL
Comments
Post a Comment