Hi, That seems to be a bit out of the scope of SQAlchemy, most databases have a way of dumping their data to sql to reload in another server, now, I know django for example has a way to dump and load the project database (fixtures) for testing, but I don't recall TG having something like that, even so I would not recommend you to use that kind of tool in production.
SQLAlchemy has a way to manage schema migration which is as far as it goes, meaning that you can recreate the database tables in any other server with minimal fuss and evolve the schema, but this does not cover importing data across different databases. -- 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?hl=en.

