I finished the changes and posted a patch. http://trac.turbogears.org/turbogears/ticket/1115
Check it out and let me know what you think. It has SA support via SelectResults and multi-field sorting. Use SA SelectResults like this: from sqlalchemy.ext.selectresults import SelectResults query = session.query(MySAClass) sr = SelectResults(query) Use sr for SQLAlchemy where you would normally use MySOClass.select() for SQLObject. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" 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/turbogears -~----------~----~----~----~------~----~------~--~---

