I am new to cx_oracle. I have established a connection and I am able to create and drop a table using execute.
Where I am failing is when I try to use \"INSERT INTO ...\
How can cursor.commit work when the methods in Cursor do not have commit, connections has this method and hence it should be:
cursor.commit
connection.commit()
Using cursor.commit() returns: AttributeError: 'cx_Oracle.Cursor' object has no attribute 'commit'
cursor.commit()
AttributeError: 'cx_Oracle.Cursor' object has no attribute 'commit'