mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-28 03:26:01 -04:00
42b6ef8ccd
1. Section decorators to [one style](http://docutils.sourceforge.net/docs/ref/rst/restructuredtext.html#sections): without inset at both side and with same length as text. 2. Fix broken [reference](http://docs.sqlalchemy.org/en/latest/core/type_basics.html#generic-types). 3. Convert tabs to space in some small files. 4. Some python code snippets have python+sql syntax hint. Change-Id: I39a7a41ef0b0591c6bf1e610748e2b5c19fc5379 Pull-request: https://github.com/zzzeek/sqlalchemy/pull/361
31 lines
759 B
ReStructuredText
31 lines
759 B
ReStructuredText
.. _dep_interfaces_core_toplevel:
|
|
|
|
Deprecated Event Interfaces
|
|
===========================
|
|
|
|
.. module:: sqlalchemy.interfaces
|
|
|
|
This section describes the class-based core event interface introduced in
|
|
SQLAlchemy 0.5. The ORM analogue is described at :ref:`dep_interfaces_orm_toplevel`.
|
|
|
|
.. deprecated:: 0.7
|
|
The new event system described in :ref:`event_toplevel` replaces
|
|
the extension/proxy/listener system, providing a consistent interface
|
|
to all events without the need for subclassing.
|
|
|
|
Execution, Connection and Cursor Events
|
|
---------------------------------------
|
|
|
|
.. autoclass:: ConnectionProxy
|
|
:members:
|
|
:undoc-members:
|
|
|
|
Connection Pool Events
|
|
----------------------
|
|
|
|
.. autoclass:: PoolListener
|
|
:members:
|
|
:undoc-members:
|
|
|
|
|