Hi, I am using SQLA for reading from a database. I modify the objects to use in my code, but don't want to write anything back to the database. therefore I call: session.expunge_all() , before reading the next set of data. This works, but it results in the select statements being re-parsed by Oracle. (parse to execute ratio is 1:1) Is there a way of throwing away all objects from the last fetch without throwing away the parsed statements?
--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
