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

Comments

Popular posts from this blog

Converting Excel File to JSON File using xlrd module

Using time module