]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
- Connection has execution_options(), generative method
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 24 Jan 2010 22:50:58 +0000 (22:50 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 24 Jan 2010 22:50:58 +0000 (22:50 +0000)
commit770e1ddc1338f5b4ca603bd273b985955bd65126
treef84cf04dc070382169ce98037d90fe3233a132d4
parentd3e49722d19068ccc6cdd577748b4b8df158db9c
- Connection has execution_options(), generative method
which accepts keywords that affect how the statement
is executed w.r.t. the DBAPI.   Currently supports
"stream_results", causes psycopg2 to use a server
side cursor for that statement.   Can also be set
upon select() and text() constructs directly as well
as ORM Query().
CHANGES
lib/sqlalchemy/dialects/mysql/oursql.py
lib/sqlalchemy/engine/base.py
lib/sqlalchemy/engine/default.py
lib/sqlalchemy/sql/expression.py
lib/sqlalchemy/util.py
test/dialect/test_postgresql.py