You can also connect to both at the same time
db1=DAL(...)
db2=DAL(...)
db1.export_to_csv_file(open('/path/to/file.csv', 'wb'))
db2.import_from_csv_file(open('/path/to/file.csv', 'rb'))
On Oct 30, 11:25 pm, Jason Brower <
encomp...@gmail.com> wrote:
> Heh, oh yeah. :) Thanks,
> Jason Brower
>
> On Fri, 2009-10-30 at 23:04 -0500, Thadeus Burgess wrote:
> > db.export_to_csv_file(open('/path/to/file.csv', 'wb'))
>
> > db.import_from_csv_file(open('/path/to/file.csv', 'rb'))
>
> > -Thadeus
>
> > On Fri, Oct 30, 2009 at 10:50 PM, Jason Brower <
encomp...@gmail.com>