Skip to content

Instantly share code, notes, and snippets.

@NPS-ARCN-CAKN
Created June 23, 2015 18:19
Show Gist options
  • Save NPS-ARCN-CAKN/39400c58eda69ba1c7a3 to your computer and use it in GitHub Desktop.
Save NPS-ARCN-CAKN/39400c58eda69ba1c7a3 to your computer and use it in GitHub Desktop.
Python exception example
connection = pyodbc.connect('DRIVER={SQL Server};SERVER=' + server + ';DATABASE=' + database, autocommit = False)
cursor = connection.cursor()
try:
cursor.execute("INSERT INTO MyTable(a,b) VALUES('a','b')")
except Exception as ex:
print 'Error: ' + str(ex)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment