On Wednesday, November 30, 2011 3:13:54 PM UTC-5, juanduke wrote: > > Maybe something like: db['tableA'] = db.tableA_test and then the rest of > the code, always reference: db.tableA.....etc >
Yes, I think you can do that, or just: db.tableA = db.tableA_test That may cause problems in some cases, though. For example, in that case, I believe db.tables will include 'tableA_test' but not 'tableA'. Anthony

