Question

In a try/except block, how do I extract the Oracle error number?

Was it helpful?

Solution

try:
   cursor.execute("select 1 / 0 from dual")
except cx_Oracle.DatabaseError, e:
   error, = e
   print "Code:", error.code
   print "Message:", error.message

This results in the following output:

Code: 1476
Message: ORA-01476: divisor is equal to zero
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top