Fixes for the SQLAlchemy 0.4 and 0.5 Oracle driver
Project description
collective.saoraclefixes
Fix SQLAlchemy 0.4 and 0.5 Oracle quoting and offset/limit problems.
This package monkeypatches the SQLAlchemy Oracle driver with backports from the SQLAlchemy 0.6 branch. Fixes included are:
Reserved words. Before 0.6 no Oracle-specific reserved words were included, requiring you to rename columns and labels, making it difficult to code in a database-neutral fashion.
Note that the oracle reserved words list in this package is a superset of the list in SQLAlchemy 0.6 (at least until SQLAlchemy branches/rel_0_6 r6245). This package includes semi-reserved identifiers as defined by the Oracle V$RESERVED_WORDS view
Bindparameter quoting. Using a reserved word as a bind parameter requires quoting as well. Parameters are quoted in the generated SQL code, and all use of the parameters during execution correctly uses the quoted versions.
Limit/offset handling. 0.6 introduces a (much) better method of implementing query limits and offsets in Oracle, following recommended Oracle practice. The 0.4/0.5 method could result in incorrect ordering, or would completely fail when sorting on a aliased column.
The backport includes support for the optimize_limits=False dialect flag. For more information on the change, see SQLAlchemy ticket #536.
To use, simply add an import to this package:
import collective.saoraclefixes # apply oracle fixes
Note that the patches will only apply when SQLAlchemy versions 0.4 and 0.5 are used. All patching activity will be logged via python’s logger module with loglevel DEBUG.
License
collective.saoraclefixes is distributed under the MIT license, just like SQLAlchemy.
Credits
- Backporting work
Changelog
1.1 - 2009-08-12
Add the improved LIMIT/OFFSET handling from 0.6.
1.0 - 2009-08-05
Initial release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for collective.saoraclefixes-1.1.zip
Algorithm | Hash digest | |
---|---|---|
SHA256 | f857f91bb0de9ba970b33e1aeb825d782052774419f956fbcc1981a0351d7e25 |
|
MD5 | 614895c248cd9599baa504075e876721 |
|
BLAKE2b-256 | 0b940685d1586d81a9136d4bae35078a2d8d5470f4ba1ac5c289a224804c4246 |