[sqlalchemy] Re: Problems with non existing relations

2007-06-12 Thread voltron
actually, I am iterating through all the databases in the meta ti = model.meta.table_iterator() for t in ti: print create %s ? % t if raw_input(Choose [Y/n]).lower() in ['y','']: t.create() I want to be able to chose which database to create from a pool on

[sqlalchemy] Re: Problems with non existing relations

2007-06-12 Thread Michael Bayer
un 12, 3:59 pm, voltron [EMAIL PROTECTED] wrote: actually, I am iterating through all the databases in the meta ti = model.meta.table_iterator() for t in ti: print create %s ? % t if raw_input(Choose [Y/n]).lower() in ['y','']: t.create() I want to be