Advertisement
Guest User

Untitled

a guest
May 26th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. db = ...
  2. cursor = ...
  3. try:
  4. cursor.execute(...)
  5. cursor.commit()
  6. wx.MessageBox("Insertado OK")
  7. except cx_Oracle.IntegrityError:
  8. wx.MessageBox("Ya existe")
  9. finally:
  10. cursor.close()
  11. db.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement