rolled back the operationalerror catch...definitely doesnt work right now

This commit is contained in:
Mike Bayer
2006-03-17 23:56:54 +00:00
parent 1d4041e6ac
commit 73ffd12a5a
-3
View File
@@ -701,9 +701,6 @@ class SQLEngine(schema.SchemaEngine):
parameters = {}
try:
c.execute(statement, parameters)
except self.dbapi().OperationalError, e:
c.parent.invalidate()
raise exceptions.SQLError(statement, parameters, e)
except Exception, e:
raise exceptions.SQLError(statement, parameters, e)
self.context.rowcount = c.rowcount