diff options
Diffstat (limited to 'lib/sqlalchemy/engine/events.py')
-rw-r--r-- | lib/sqlalchemy/engine/events.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sqlalchemy/engine/events.py b/lib/sqlalchemy/engine/events.py index 2ab707b8a..af271c56c 100644 --- a/lib/sqlalchemy/engine/events.py +++ b/lib/sqlalchemy/engine/events.py @@ -243,7 +243,7 @@ class ConnectionEvents(event.Events): .. versionadded: 1.4 - :param result: :class:`_engine.ResultProxy` generated by the execution + :param result: :class:`_engine.CursorResult` generated by the execution . """ @@ -298,7 +298,7 @@ class ConnectionEvents(event.Events): :param conn: :class:`_engine.Connection` object :param cursor: DBAPI cursor object. Will have results pending if the statement was a SELECT, but these should not be consumed - as they will be needed by the :class:`_engine.ResultProxy`. + as they will be needed by the :class:`_engine.CursorResult`. :param statement: string SQL statement, as passed to the DBAPI :param parameters: Dictionary, tuple, or list of parameters being passed to the ``execute()`` or ``executemany()`` method of the |