[sqlalchemy] Re: minor documentation typo

2008-10-29 Thread empty
Jon, On Oct 27, 3:28 pm, Jon [EMAIL PROTECTED] wrote: In the docs section for MetaData, under drop_all, the following text appears:     Defaults to True, don't issue CREATEs for tables already present in the target database. I think you mean s/CREATE/DROP/ This bit is corrected in r5212.

[sqlalchemy] outerjoin in mapper

2008-10-29 Thread jack2318
Hi, I have 3 tables - tbl_item, tbl_item_sku, and tbl_item_lot Table tbl_item has 2 FKs my mapper is pretty simple: mdbItem = mapper(dbItem, tbl_item, properties={ 'sku': relation(dbItemSKU,