I don't think toolbox and sql create are supported yet for SQLAlchemy. Apart from these, it seems easy to use SQLAlchemy with whatever I have experienced. Novice tips those I have learned:
1. create a project with --sqlalchemy flag 2. use the predefined "metadata" and "session" (from turbogears.database import metadata, session) 3. The context is "session.context" 4. Use the activemapper layer if requirements are simple 5. Use assign_mapper if activemapper is not sufficient to handle the requirements, or there is a liking to separate table definitions etc. from business logic Sanjay --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

