Re: [sqlalchemy] sqlalchemy and firebird; quotes around table/column names

2013-04-19 Thread Holger Schramm
it consists of regular alphanumeric characters. Right now it is assumed to be case sensitive which results in quotes, and results in a non-match since that's probably not how Firebird sees the name (it accepts quotes, it just indicates exactly that casing). On Apr 18, 2013, at 7:45 PM, Holger

[sqlalchemy] sqlalchemy and firebird; quotes around table/column names

2013-04-18 Thread Holger Schramm
Hi, i am playing around with sqlalchemy.orm and firebird server. engine = create_engine('firebird+kinterbasdb://SYSDBA:masterkey@localhost/C:/path/to/database/DEMODATABASE.FDB') db = engine.connect() Session = scoped_session(sessionmaker(autocommit=False, autoflush=False, bind=engine)) session