diff options
Diffstat (limited to 'lib/sqlalchemy/engine/base.py')
-rw-r--r-- | lib/sqlalchemy/engine/base.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/sqlalchemy/engine/base.py b/lib/sqlalchemy/engine/base.py index a631f5c32..f68c31b97 100644 --- a/lib/sqlalchemy/engine/base.py +++ b/lib/sqlalchemy/engine/base.py @@ -998,8 +998,10 @@ class Connection(Connectable): containing percent signs (and possibly other characters) that is neutral regarding whether it's executed by the DBAPI or piped into a script that's later invoked by - command line tools. New in 0.7.6. - + command line tools. + + .. versionadded:: 0.7.6 + :param stream_results: Available on: Connection, statement. Indicate to the dialect that results should be "streamed" and not pre-buffered, if possible. This is a limitation @@ -2346,7 +2348,7 @@ class Engine(Connectable, log.Identified): close the :class:`.Connection` when that :class:`.ResultProxy` has exhausted all result rows. - New in 0.7.6. + .. versionadded:: 0.7.6 See also: |