Hi all, I have a non-transactional session accessing a MySQL database with InnoDB tables (SA 0.4.7). It's created via
> sessionmaker(bind=self.engine, autoflush=True, transactional=False). For some queries, I use begin() / commit() for explicit transactions. However, after commit()ing, SQLAlchemy wraps all subsequent operations on the same session in BEGIN/COMMIT statements (as observable in MySQL's SQL log), even though I did not call begin() again! Not even close() changes this behavior. Is this intended and if so, how can I make it untransactional again? Thanks, Simon --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To post to this group, send email to sqlalchemy@googlegroups.com 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 -~----------~----~----~----~------~----~------~--~---