diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-05-02 14:59:15 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2020-05-02 14:59:15 -0400 |
commit | 00d40775b73cf94fa5d1b765dac1e600e93e172f (patch) | |
tree | 329c5e5de5a8d02bd1997eeaa3f74d9bfd22e238 /lib | |
parent | bbf644862ab05734d153d74abf59aa3492278563 (diff) | |
download | sqlalchemy-00d40775b73cf94fa5d1b765dac1e600e93e172f.tar.gz |
Fix links in future engine to refer to engine.Result
Change-Id: I1d24db707de15fbdc05e80e0705590eb93d055d0
Diffstat (limited to 'lib')
-rw-r--r-- | lib/sqlalchemy/future/engine.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sqlalchemy/future/engine.py b/lib/sqlalchemy/future/engine.py index a066846f7..b96716978 100644 --- a/lib/sqlalchemy/future/engine.py +++ b/lib/sqlalchemy/future/engine.py @@ -28,7 +28,7 @@ class Connection(_LegacyConnection): class. The API and behavior of this object is largely the same, with the following differences in behavior: - * The result object returned for results is the :class:`_future.Result` + * The result object returned for results is the :class:`_engine.Result` object. This object has a slightly different API and behavior than the prior :class:`_engine.CursorResult` object. @@ -271,7 +271,7 @@ class Connection(_LegacyConnection): def execute(self, statement, parameters=None, execution_options=None): r"""Executes a SQL statement construct and returns a - :class:`_future.Result`. + :class:`_engine.Result`. :param object: The statement to be executed. This is always an object that is in both the :class:`_expression.ClauseElement` and @@ -298,7 +298,7 @@ class Connection(_LegacyConnection): dictionary can provide a subset of the options that are accepted by :meth:`_future.Connection.execution_options`. - :return: a :class:`_future.Result` object. + :return: a :class:`_engine.Result` object. """ return self._execute_20( @@ -309,7 +309,7 @@ class Connection(_LegacyConnection): r"""Executes a SQL statement construct and returns a scalar object. This method is shorthand for invoking the - :meth:`_future.Result.scalar` method after invoking the + :meth:`_engine.Result.scalar` method after invoking the :meth:`_future.Connection.execute` method. Parameters are equivalent. :return: a scalar Python value representing the first column of the |