]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- removed "parameters" argument from clauseelement.compile(), replaced with
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 4 Sep 2007 00:08:57 +0000 (00:08 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 4 Sep 2007 00:08:57 +0000 (00:08 +0000)
commit3126d464e7124cde24b18ba7efc318913d2ac40d
tree33dd8fdda1ea8a3aae5c75cfbbdded60a1b01997
parentc9924a4a145f06eac427fe60c54d4c58b894167f
- removed "parameters" argument from clauseelement.compile(), replaced with
  "column_keys".  the parameters sent to execute() only interact with the
  insert/update statement compilation process in terms of the column names
  present but not the values for those columns.
  produces more consistent execute/executemany behavior, simplifies things a
  bit internally.
CHANGES
lib/sqlalchemy/databases/mssql.py
lib/sqlalchemy/engine/base.py
lib/sqlalchemy/sql/compiler.py
lib/sqlalchemy/sql/expression.py
test/sql/query.py
test/sql/select.py
test/testlib/testing.py