[sqlalchemy] Re: Universal way to process inserting or updating values

2010-11-06 Thread Kent
Mike, I made the assumption parameters would always be a dictionary: from sqlalchemy.interfaces import ConnectionProxy class PostgresProxy(ConnectionProxy): Low level connection proxy to change all empty string '' to None, so that postgres and Oracle behave the same for us

Re: [sqlalchemy] Re: Universal way to process inserting or updating values

2010-11-06 Thread Michael Bayer
On Nov 6, 2010, at 3:12 PM, Kent wrote: Mike, I made the assumption parameters would always be a dictionary: from sqlalchemy.interfaces import ConnectionProxy class PostgresProxy(ConnectionProxy): Low level connection proxy to change all empty string '' to None, so that