Hi, I'm exploring sqlalchemy features for my web application project which is a multi-user application. Each user can access it's own data and do something with it. Because of that, I would like to read data only once from database, save it to some user session so that the user can work with his data offline. When user finishes his work, the data is submitted back to database. Basically only one read and one write from/ to database everything else is done offline. Can this be achieved with sqlAlchemy Session object? or is there any better solution for doing this?
--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
