Hi New to Python and just downloaded 3.5 Trying to connect to Oracle but failing - eg
import cx_oracle
connstr = 'userid/password@@99.999.9.99:PORT/SID'
connection = cx_oracle.connect(connstr)
cursor = connection.cursor()
cursor.execute("SELECT * FROM MYTABLE WHERE ROWNUM <=100")
cursor.close()
connection.close()
Getting error No module named 'cx_oracle'
Any examples or should I use an earlier version of Python.
Regards
--
https://mail.python.org/mailman/listinfo/python-list
