Hi,

In order to achieve concurrency control using optimistic locking, we
are doing the following:

1. Adding a column in the table like this:

page_tbl = Table('page', metadata,
    Column('page_id', Integer, primary_key=True, autoincrement=True),
    Column('link_name', Unicode(30), nullable=False),
    .
    .
    Column('version', Integer, default=0))

2. Mapping like this:

assign_mapper(session.context, Page, page_tbl,
version_id_col=page_tbl.c.version, properties={...........})


But it does not seem working. Are we missing any step?

thanks
Sanjay


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to