summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-03-27 19:18:06 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-03-27 19:18:06 -0400
commit50576a01eb39742632268fe1e595a554625171eb (patch)
treedfdc8410792c9b20786349f77026fbb8f7e6b500 /doc
parent460139f630a8db71f2a12eae0b95c75c858210f8 (diff)
downloadsqlalchemy-50576a01eb39742632268fe1e595a554625171eb.tar.gz
- Tweaked the settings for mysql-connector-python; in Py2K, the
"supports unicode statements" flag is now False, so that SQLAlchemy will encode the *SQL string* (note: *not* the parameters) to bytes before sending to the database. This seems to allow all unicode-related tests to pass for mysql-connector, including those that use non-ascii table/column names, as well as some tests for the TEXT type using unicode under cursor.executemany(). - other mysql-connector fixes; latest version seems to do better on function call counts
Diffstat (limited to 'doc')
-rw-r--r--doc/build/changelog/changelog_09.rst11
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/build/changelog/changelog_09.rst b/doc/build/changelog/changelog_09.rst
index de24d35aa..f16dd4f89 100644
--- a/doc/build/changelog/changelog_09.rst
+++ b/doc/build/changelog/changelog_09.rst
@@ -15,6 +15,17 @@
:version: 0.9.4
.. change::
+ :tags: bug, mysql
+
+ Tweaked the settings for mysql-connector-python; in Py2K, the
+ "supports unicode statements" flag is now False, so that SQLAlchemy
+ will encode the *SQL string* (note: *not* the parameters)
+ to bytes before sending to the database. This seems to allow
+ all unicode-related tests to pass for mysql-connector, including those
+ that use non-ascii table/column names, as well as some tests for the
+ TEXT type using unicode under cursor.executemany().
+
+ .. change::
:tags: feature, engine
Added some new event mechanics for dialect-level events; the initial