]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- initial working version of sybase, with modifications to the transactional
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 14 Mar 2010 22:04:20 +0000 (22:04 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 14 Mar 2010 22:04:20 +0000 (22:04 +0000)
commit39fd3442e306f9c2981c347ab2487921f3948a61
tree50868207def3fda8434be61660fae8944dde1229
parentd9af1828fbd79cc925abce98c9dd1d0b629e88a8
- initial working version of sybase, with modifications to the transactional
model to accomodate Sybase's default mode of "no ddl in transactions".
- identity insert not working yet.  it seems the default here might be the
opposite of that of MSSQL.
- reflection will be a full rewrite
- default DBAPI is python-sybase, well documented and nicely DBAPI compliant
except for the bind parameter situation, where we have a straightforward workaround
- full Sybase docs at: http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.help.ase_15.0/title.htm
README.unittests
lib/sqlalchemy/dialects/sybase/__init__.py
lib/sqlalchemy/dialects/sybase/base.py
lib/sqlalchemy/dialects/sybase/mxodbc.py
lib/sqlalchemy/dialects/sybase/pyodbc.py
lib/sqlalchemy/dialects/sybase/pysybase.py [new file with mode: 0644]
lib/sqlalchemy/dialects/sybase/schema.py [deleted file]
lib/sqlalchemy/engine/default.py