On 9/25/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hello everybody. I'm trying to understand sqlAlchemy and turbogears. > could somebody post an example controler.py showing how to link > everything in with sqlalchemy
You don't need to do anything to controllers.py for SQLAlchemy (or for SQLObject for that matter). I'd recommend quickstarting a new project with the --sqlalchemy switch and identity to see how it differs from a standard SQLObject identity project. The only caveat is that there are (erroneously) redundant many_to_many joins, so you need to delete one out of every pair of joins. There is an SA doc on the wiki [1], but that assumes you understand SA and only covers TurboGears integration notes and caveats. [1] http://docs.turbogears.org/1.0/SQLAlchemy --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

