In my SQLAlchemy app I have the following model:
from sqlalchemy import Column, String
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import scoped_session, sessionmaker
from zope.sqlalchemy import ZopeTransactionExtension
DBSession = scoped_session(sessionmaker(extension=ZopeTransactionExtension()))
class MyModel(declarative_base()):
# ...
label = Column(String(20), unique=True)
def save(self, force=False):
DBSession.add(self)
if force:
DBSession.flush()
Later in code for every new MyModel objects I want to generate label randomly, and just regenerate it if the generated value is already exist in DB.
I'm trying to do the following:
# my_model is an object of MyModel
while True:
my_model.label = generate_label()
try:
my_model.save(force=True)
except IntegrityError:
# label is not unique - will do one more iteration
# (*)
pass
else:
# my_model saved successfully - exit the loop
break
but get this error in case when first generated label is not unique and save() called on the second (or later) iteration:
InvalidRequestError: This Session's transaction has been rolled back due to a previous exception during flush. To begin a new transaction with this Session, first issue Session.rollback(). Original exception was: (IntegrityError) column url_label is not unique...
When I add DBSession.rollback() in the position (*) I get this:
ResourceClosedError: The transaction is closed
What should I do to handle this situation correctly?
Thanks
declarative_base()to a variable. Otherwise you'll experience problems when creating more than one model as you might have different base classes for them. – ThiefMaster♦ Sep 25 '11 at 18:05