]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- remove the exclusion of cx_oracle.STRING from setinputsizes by
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 17 Jan 2010 21:12:47 +0000 (21:12 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 17 Jan 2010 21:12:47 +0000 (21:12 +0000)
commit8f4871eaf25c2335823a4116d593e6782ff5d743
tree25a876c01c83e35f2300f6f1165cff96e4a53deb
parent151fa4e75ce951e42068b3a5785e06a8ecf4dd44
- remove the exclusion of cx_oracle.STRING from setinputsizes by
configuring cx_oracle.UNICODE on OracleNVarChar.  Attempts
were made to pass unicode data to/from a plain VARCHAR2 with
cx_oracle, both with and without setinputsizes in use, but
it doesn't appear to be possible - therefore users will need to use
Unicode/UnicodeText with oracle if data contains non-ASCII info.
[ticket:1517]
- updated the Unicode/UnicodeText docs to reflect this, that
convert_unicode might not be enough.
- allowed convert_unicode='force' to be significant for bind parameters
as well.
lib/sqlalchemy/dialects/oracle/cx_oracle.py
lib/sqlalchemy/types.py
test/sql/test_types.py