]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- _execute_clauseelement() goes back to being
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 17 Dec 2008 23:09:51 +0000 (23:09 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 17 Dec 2008 23:09:51 +0000 (23:09 +0000)
commit6a99f293130c6e11aba28c19c84f9195c5bf60c7
treefec4da7bdcf1a3698f71eb24bda378249f3d56a4
parent7b7530de199963fc946b7f96c14bf78ae24a43a3
- _execute_clauseelement() goes back to being
a private method.  Subclassing Connection
is not needed now that ConnectionProxy
is available.
- tightened the interface for the various _execute_XXX()
methods to reduce ambiguity
- __distill_params() no longer creates artificial [{}] entry,
blank dict is no longer passed through to do_execute()
in any case unless explicitly sent from the outside
as in connection.execute("somestring"), {})
- fixed a few old sql.query tests which were doing that
- removed needless do_execute() from mysql dialect
- fixed charset param not properly being sent to
_compat_fetchone() in mysql
CHANGES
lib/sqlalchemy/databases/mysql.py
lib/sqlalchemy/engine/base.py
lib/sqlalchemy/sql/expression.py
test/engine/execute.py
test/sql/query.py