I've created a new dialect (for the H2 database), but it seems to work
OK only when I explicitly turn on auto-commit, this:
def do_begin(self, connect):
cu = connect.cursor()
cu.execute('SET AUTOCOMMIT ON')
H2 does support transactions, and I would like them enabled. However,
it seems that after every flush(), I am getting a ROLLBACK send from
SQLAlchemy. Why is this happening? Any ideas?
-Tal
--
You received this message because you are subscribed to the Google Groups
"sqlalchemy" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sqlalchemy?hl=en.