]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Now using cx_oracle output converters so that the
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 3 Apr 2010 19:33:55 +0000 (15:33 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 3 Apr 2010 19:33:55 +0000 (15:33 -0400)
commiteefdbd3757a245ccb73eb191d37f23c3048ef99f
tree5880c36cd07d922c5f9e7b085ab93b64d55ba72e
parente8d8c999d2b43d2964798ca7f7a16aafe69cb153
- Now using cx_oracle output converters so that the
DBAPI returns natively the kinds of values we prefer:
- NUMBER values with positive precision + scale convert
to cx_oracle.STRING and then to Decimal.   This
allows perfect precision for the Numeric type when
using cx_oracle.  [ticket:1759]
- STRING/FIXED_CHAR now convert to unicode natively.
SQLAlchemy's String types then don't need to
apply any kind of conversions.
CHANGES
lib/sqlalchemy/dialects/oracle/cx_oracle.py
test/dialect/test_oracle.py
test/sql/test_types.py