To use 2 different databases you require 2 connection strings. db_1 = DAL(.....) db_2 = DAL(....)
db_1.define_table(....) db_2.define_table(....) db_1.table_from_db_1.insert() # query etc... db_2.table_from_db_2.insert() # query etc... On Fri, Mar 2, 2012 at 3:58 AM, Wuwei <[email protected]> wrote: > Hello, > I'm trying to use DAL with a MSSQL db. > I need to work with tables from 2 different schemas but I don't find how > to specify the schema when I define the table. > > Can you help me? > > Thank you. > -- -- Regards, Bruce Wade http://ca.linkedin.com/in/brucelwade http://www.wadecybertech.com http://www.warplydesigned.com http://www.fitnessfriendsfinder.com

