Re: [sqlalchemy] Oracle column names beginning with a digit

2011-04-19 Thread Michael Bayer
On Apr 19, 2011, at 9:55 PM, Sirko Schroeder wrote: > Hi, > > I have a little problem with column names that start with a digit at > an oracle databases which I inherited. > When I try to do and update/insert with values from a dict like this > i.e.: > site_tbl = Table('TBL_SITE', metadata, auto

[sqlalchemy] Oracle column names beginning with a digit

2011-04-19 Thread Sirko Schroeder
Hi, I have a little problem with column names that start with a digit at an oracle databases which I inherited. When I try to do and update/insert with values from a dict like this i.e.: ---8<-- engine =create_engine('oracle+cx_oracle://') engine.echo = True Session = sessionmaker(bind=engine) se