I am currently using the SQLAlchemy ORM and I'd like to be able to start up 
transactions using PostgreSQL's SERIALIZABLE READ ONLY DEFERRABLE isolation 
level. I don't want every single transaction to use this isolation level 
nor do I have the ability to change the server configuration so I need to 
do it in my application. My question is, what is the best way to go about 
achieving this? I tried setting the execution_option to "SERIALIZABLE READ 
ONLY DEFERRABLE" but that fails with the error message of "Valid isolation 
levels for postgresql are REPEATABLE READ, AUTOCOMMIT, SERIALIZABLE, READ 
COMMITTED, READ UNCOMMITTED".

-- 
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sqlalchemy+unsubscr...@googlegroups.com.
To post to this group, send email to sqlalchemy@googlegroups.com.
Visit this group at http://groups.google.com/group/sqlalchemy.
For more options, visit https://groups.google.com/d/optout.

Reply via email to