> Do other dialects support this, but just not indicate it in the > documentation?
On further investigation I see this old ticket: http://www.sqlalchemy.org/trac/ticket/443 ... which implies it is, in fact, only for PostgreSQL and Sqlite at the moment. I'm also quite interested in setting the isolation level on a per session/connection basis. However - it seems like the isolation_level argument to create_engine() sets the isolation level for all managed connections. I recognize that there may (at least) be some issues with this based on the connection pooling scheme in use, but is there a way (even a hack) to do a one-time set of the isolation level to SERIALIZABLE (for example) for a created session? This thread makes it seem like per-session/connection isolation setting is not as simple as it might seem at first... http://groups.google.com/group/sqlalchemy-devel/browse_thread/thread/653b6b2f49a940b8 And this StackOverflow question makes it seem like it isn't easy to set the isolation level per session... http://bit.ly/eG5DUl Still digging... Russ -- 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.
