Core Events

This section describes the event interfaces provided in SQLAlchemy Core. For an introduction to the event listening API, see Events. ORM events are described in ORM Events.

Object NameDescription

Events

Define event listening functions for a particular target type.

class sqlalchemy.event.base.Events

Define event listening functions for a particular target type.

Members

dispatch

Class signature

class sqlalchemy.event.Events (sqlalchemy.event._HasEventsDispatch)

  • attribute sqlalchemy.event.base.Events.dispatch: _Dispatch[_ET] = <sqlalchemy.event.base.EventsDispatch object>

    reference back to the _Dispatch class.

    Bidirectional against _Dispatch._events

Connection Pool Events

Object NameDescription

PoolEvents

Available events for Pool.

PoolResetState

describes the state of a DBAPI connection as it is being passed to the PoolEvents.reset() connection pool event.

class sqlalchemy.events.PoolEvents

Available events for Pool.

The methods here define the name of an event as well as the names of members that are passed to listener functions.

e.g.:

  1. from sqlalchemy import event
  2. def my_on_checkout(dbapi_conn, connection_rec, connection_proxy):
  3. "handle an on checkout event"
  4. event.listen(Pool, 'checkout', my_on_checkout)

In addition to accepting the Pool class and Pool instances, PoolEvents also accepts Engine objects and the Engine class as targets, which will be resolved to the .pool attribute of the given engine or the Pool class:

  1. engine = create_engine("postgresql+psycopg2://scott:tiger@localhost/test")
  2. # will associate with engine.pool
  3. event.listen(engine, 'checkout', my_on_checkout)

Members

checkin(), checkout(), close(), close_detached(), connect(), detach(), dispatch, first_connect(), invalidate(), reset(), soft_invalidate()

Class signature

class sqlalchemy.events.PoolEvents (sqlalchemy.event.Events)

  1. @event.listens_for(SomeEngineOrPool, 'checkin')
  2. def receive_checkin(dbapi_connection, connection_record):
  3. "listen for the 'checkin' event"
  4. # ... (event handling logic) ...
  5. ```
  6. Note that the connection may be closed, and may be None if the connection has been invalidated. `checkin` will not be called for detached connections. (They do not return to the pool.)
  7. - Parameters:
  8. - **dbapi\_connection** – a DBAPI connection. The [ConnectionPoolEntry.dbapi\_connection]($ba04c3bd42280074.md#sqlalchemy.pool.ConnectionPoolEntry.dbapi_connection "sqlalchemy.pool.ConnectionPoolEntry.dbapi_connection") attribute.
  9. - **connection\_record** – the [ConnectionPoolEntry]($ba04c3bd42280074.md#sqlalchemy.pool.ConnectionPoolEntry "sqlalchemy.pool.ConnectionPoolEntry") managing the DBAPI connection.
  1. @event.listens_for(SomeEngineOrPool, 'checkout')
  2. def receive_checkout(dbapi_connection, connection_record, connection_proxy):
  3. "listen for the 'checkout' event"
  4. # ... (event handling logic) ...
  5. ```
  6. - Parameters:
  7. - **dbapi\_connection** – a DBAPI connection. The [ConnectionPoolEntry.dbapi\_connection]($ba04c3bd42280074.md#sqlalchemy.pool.ConnectionPoolEntry.dbapi_connection "sqlalchemy.pool.ConnectionPoolEntry.dbapi_connection") attribute.
  8. - **connection\_record** – the [ConnectionPoolEntry]($ba04c3bd42280074.md#sqlalchemy.pool.ConnectionPoolEntry "sqlalchemy.pool.ConnectionPoolEntry") managing the DBAPI connection.
  9. - **connection\_proxy** – the [PoolProxiedConnection]($ba04c3bd42280074.md#sqlalchemy.pool.PoolProxiedConnection "sqlalchemy.pool.PoolProxiedConnection") object which will proxy the public interface of the DBAPI connection for the lifespan of the checkout.
  10. If you raise a [DisconnectionError]($40db62cb9ae746c0.md#sqlalchemy.exc.DisconnectionError "sqlalchemy.exc.DisconnectionError"), the current connection will be disposed and a fresh connection retrieved. Processing of all checkout listeners will abort and restart using the new connection.
  11. See also
  12. [ConnectionEvents.engine\_connect()](#sqlalchemy.events.ConnectionEvents.engine_connect "sqlalchemy.events.ConnectionEvents.engine_connect") - a similar event which occurs upon creation of a new [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection").
  1. @event.listens_for(SomeEngineOrPool, 'close')
  2. def receive_close(dbapi_connection, connection_record):
  3. "listen for the 'close' event"
  4. # ... (event handling logic) ...
  5. ```
  6. The event is emitted before the close occurs.
  7. The close of a connection can fail; typically this is because the connection is already closed. If the close operation fails, the connection is discarded.
  8. The [close()](#sqlalchemy.events.PoolEvents.close "sqlalchemy.events.PoolEvents.close") event corresponds to a connection that’s still associated with the pool. To intercept close events for detached connections use [close\_detached()](#sqlalchemy.events.PoolEvents.close_detached "sqlalchemy.events.PoolEvents.close_detached").
  9. New in version 1.1.
  10. - Parameters:
  11. - **dbapi\_connection** – a DBAPI connection. The [ConnectionPoolEntry.dbapi\_connection]($ba04c3bd42280074.md#sqlalchemy.pool.ConnectionPoolEntry.dbapi_connection "sqlalchemy.pool.ConnectionPoolEntry.dbapi_connection") attribute.
  12. - **connection\_record** – the [ConnectionPoolEntry]($ba04c3bd42280074.md#sqlalchemy.pool.ConnectionPoolEntry "sqlalchemy.pool.ConnectionPoolEntry") managing the DBAPI connection.
  1. @event.listens_for(SomeEngineOrPool, 'close_detached')
  2. def receive_close_detached(dbapi_connection):
  3. "listen for the 'close_detached' event"
  4. # ... (event handling logic) ...
  5. ```
  6. The event is emitted before the close occurs.
  7. The close of a connection can fail; typically this is because the connection is already closed. If the close operation fails, the connection is discarded.
  8. New in version 1.1.
  9. - Parameters:
  10. **dbapi\_connection** – a DBAPI connection. The [ConnectionPoolEntry.dbapi\_connection]($ba04c3bd42280074.md#sqlalchemy.pool.ConnectionPoolEntry.dbapi_connection "sqlalchemy.pool.ConnectionPoolEntry.dbapi_connection") attribute.
  1. @event.listens_for(SomeEngineOrPool, 'connect')
  2. def receive_connect(dbapi_connection, connection_record):
  3. "listen for the 'connect' event"
  4. # ... (event handling logic) ...
  5. ```
  6. This event allows one to capture the point directly after which the DBAPI module-level `.connect()` method has been used in order to produce a new DBAPI connection.
  7. - Parameters:
  8. - **dbapi\_connection** – a DBAPI connection. The [ConnectionPoolEntry.dbapi\_connection]($ba04c3bd42280074.md#sqlalchemy.pool.ConnectionPoolEntry.dbapi_connection "sqlalchemy.pool.ConnectionPoolEntry.dbapi_connection") attribute.
  9. - **connection\_record** – the [ConnectionPoolEntry]($ba04c3bd42280074.md#sqlalchemy.pool.ConnectionPoolEntry "sqlalchemy.pool.ConnectionPoolEntry") managing the DBAPI connection.
  1. @event.listens_for(SomeEngineOrPool, 'detach')
  2. def receive_detach(dbapi_connection, connection_record):
  3. "listen for the 'detach' event"
  4. # ... (event handling logic) ...
  5. ```
  6. This event is emitted after the detach occurs. The connection is no longer associated with the given connection record.
  7. New in version 1.1.
  8. - Parameters:
  9. - **dbapi\_connection** – a DBAPI connection. The [ConnectionPoolEntry.dbapi\_connection]($ba04c3bd42280074.md#sqlalchemy.pool.ConnectionPoolEntry.dbapi_connection "sqlalchemy.pool.ConnectionPoolEntry.dbapi_connection") attribute.
  10. - **connection\_record** – the [ConnectionPoolEntry]($ba04c3bd42280074.md#sqlalchemy.pool.ConnectionPoolEntry "sqlalchemy.pool.ConnectionPoolEntry") managing the DBAPI connection.
  • attribute sqlalchemy.events.PoolEvents.dispatch: _Dispatch[_ET] = <sqlalchemy.event.base.PoolEventsDispatch object>

    reference back to the _Dispatch class.

    Bidirectional against _Dispatch._events

  • method sqlalchemy.events.PoolEvents.first_connect(dbapi_connection: DBAPIConnection, connection_record: ConnectionPoolEntry) → None

    Called exactly once for the first time a DBAPI connection is checked out from a particular Pool.

    Example argument forms:

    ``` from sqlalchemy import event

  1. @event.listens_for(SomeEngineOrPool, 'first_connect')
  2. def receive_first_connect(dbapi_connection, connection_record):
  3. "listen for the 'first_connect' event"
  4. # ... (event handling logic) ...
  5. ```
  6. The rationale for [PoolEvents.first\_connect()](#sqlalchemy.events.PoolEvents.first_connect "sqlalchemy.events.PoolEvents.first_connect") is to determine information about a particular series of database connections based on the settings used for all connections. Since a particular [Pool]($ba04c3bd42280074.md#sqlalchemy.pool.Pool "sqlalchemy.pool.Pool") refers to a single “creator” function (which in terms of a [Engine]($3743e3464fa80ce7.md#sqlalchemy.engine.Engine "sqlalchemy.engine.Engine") refers to the URL and connection options used), it is typically valid to make observations about a single connection that can be safely assumed to be valid about all subsequent connections, such as the database version, the server and client encoding settings, collation settings, and many others.
  7. - Parameters:
  8. - **dbapi\_connection** – a DBAPI connection. The [ConnectionPoolEntry.dbapi\_connection]($ba04c3bd42280074.md#sqlalchemy.pool.ConnectionPoolEntry.dbapi_connection "sqlalchemy.pool.ConnectionPoolEntry.dbapi_connection") attribute.
  9. - **connection\_record** – the [ConnectionPoolEntry]($ba04c3bd42280074.md#sqlalchemy.pool.ConnectionPoolEntry "sqlalchemy.pool.ConnectionPoolEntry") managing the DBAPI connection.
  1. @event.listens_for(SomeEngineOrPool, 'invalidate')
  2. def receive_invalidate(dbapi_connection, connection_record, exception):
  3. "listen for the 'invalidate' event"
  4. # ... (event handling logic) ...
  5. ```
  6. This event is called any time the [ConnectionPoolEntry.invalidate()]($ba04c3bd42280074.md#sqlalchemy.pool.ConnectionPoolEntry.invalidate "sqlalchemy.pool.ConnectionPoolEntry.invalidate") method is invoked, either from API usage or via “auto-invalidation”, without the `soft` flag.
  7. The event occurs before a final attempt to call `.close()` on the connection occurs.
  8. - Parameters:
  9. - **dbapi\_connection** – a DBAPI connection. The [ConnectionPoolEntry.dbapi\_connection]($ba04c3bd42280074.md#sqlalchemy.pool.ConnectionPoolEntry.dbapi_connection "sqlalchemy.pool.ConnectionPoolEntry.dbapi_connection") attribute.
  10. - **connection\_record** – the [ConnectionPoolEntry]($ba04c3bd42280074.md#sqlalchemy.pool.ConnectionPoolEntry "sqlalchemy.pool.ConnectionPoolEntry") managing the DBAPI connection.
  11. - **exception** – the exception object corresponding to the reason for this invalidation, if any. May be `None`.
  12. New in version 0.9.2: Added support for connection invalidation listening.
  13. See also
  14. [More on Invalidation]($ba04c3bd42280074.md#pool-connection-invalidation)
  1. @event.listens_for(SomeEngineOrPool, 'reset')
  2. def receive_reset(dbapi_connection, connection_record, reset_state):
  3. "listen for the 'reset' event"
  4. # ... (event handling logic) ...
  5. # DEPRECATED calling style (pre-2.0, will be removed in a future release)
  6. @event.listens_for(SomeEngineOrPool, 'reset')
  7. def receive_reset(dbapi_connection, connection_record):
  8. "listen for the 'reset' event"
  9. # ... (event handling logic) ...
  10. ```
  11. Changed in version 2.0: The [PoolEvents.reset()](#sqlalchemy.events.PoolEvents.reset "sqlalchemy.events.PoolEvents.reset") event now accepts the arguments [PoolEvents.reset.dbapi\_connection](#sqlalchemy.events.PoolEvents.reset.params.dbapi_connection "sqlalchemy.events.PoolEvents.reset"), [PoolEvents.reset.connection\_record](#sqlalchemy.events.PoolEvents.reset.params.connection_record "sqlalchemy.events.PoolEvents.reset"), [PoolEvents.reset.reset\_state](#sqlalchemy.events.PoolEvents.reset.params.reset_state "sqlalchemy.events.PoolEvents.reset"). Support for listener functions which accept the previous argument signature(s) listed above as “deprecated” will be removed in a future release.
  12. This event represents when the `rollback()` method is called on the DBAPI connection before it is returned to the pool or discarded. A custom “reset” strategy may be implemented using this event hook, which may also be combined with disabling the default “reset” behavior using the [Pool.reset\_on\_return]($ba04c3bd42280074.md#sqlalchemy.pool.Pool.params.reset_on_return "sqlalchemy.pool.Pool") parameter.
  13. The primary difference between the [PoolEvents.reset()](#sqlalchemy.events.PoolEvents.reset "sqlalchemy.events.PoolEvents.reset") and [PoolEvents.checkin()](#sqlalchemy.events.PoolEvents.checkin "sqlalchemy.events.PoolEvents.checkin") events are that [PoolEvents.reset()](#sqlalchemy.events.PoolEvents.reset "sqlalchemy.events.PoolEvents.reset") is called not just for pooled connections that are being returned to the pool, but also for connections that were detached using the [Connection.detach()]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection.detach "sqlalchemy.engine.Connection.detach") method as well as asyncio connections that are being discarded due to garbage collection taking place on connections before the connection was checked in.
  14. Note that the event **is not** invoked for connections that were invalidated using [Connection.invalidate()]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection.invalidate "sqlalchemy.engine.Connection.invalidate"). These events may be intercepted using the [PoolEvents.soft\_invalidate()](#sqlalchemy.events.PoolEvents.soft_invalidate "sqlalchemy.events.PoolEvents.soft_invalidate") and [PoolEvents.invalidate()](#sqlalchemy.events.PoolEvents.invalidate "sqlalchemy.events.PoolEvents.invalidate") event hooks, and all “connection close” events may be intercepted using [PoolEvents.close()](#sqlalchemy.events.PoolEvents.close "sqlalchemy.events.PoolEvents.close").
  15. The [PoolEvents.reset()](#sqlalchemy.events.PoolEvents.reset "sqlalchemy.events.PoolEvents.reset") event is usually followed by the [PoolEvents.checkin()](#sqlalchemy.events.PoolEvents.checkin "sqlalchemy.events.PoolEvents.checkin") event, except in those cases where the connection is discarded immediately after reset.
  16. - Parameters:
  17. - **dbapi\_connection** – a DBAPI connection. The [ConnectionPoolEntry.dbapi\_connection]($ba04c3bd42280074.md#sqlalchemy.pool.ConnectionPoolEntry.dbapi_connection "sqlalchemy.pool.ConnectionPoolEntry.dbapi_connection") attribute.
  18. - **connection\_record** – the [ConnectionPoolEntry]($ba04c3bd42280074.md#sqlalchemy.pool.ConnectionPoolEntry "sqlalchemy.pool.ConnectionPoolEntry") managing the DBAPI connection.
  19. - **reset\_state** –
  20. [PoolResetState](#sqlalchemy.events.PoolResetState "sqlalchemy.events.PoolResetState") instance which provides information about the circumstances under which the connection is being reset.
  21. New in version 2.0.
  22. See also
  23. [Reset On Return]($ba04c3bd42280074.md#pool-reset-on-return)
  24. [ConnectionEvents.rollback()](#sqlalchemy.events.ConnectionEvents.rollback "sqlalchemy.events.ConnectionEvents.rollback")
  25. [ConnectionEvents.commit()](#sqlalchemy.events.ConnectionEvents.commit "sqlalchemy.events.ConnectionEvents.commit")
  1. @event.listens_for(SomeEngineOrPool, 'soft_invalidate')
  2. def receive_soft_invalidate(dbapi_connection, connection_record, exception):
  3. "listen for the 'soft_invalidate' event"
  4. # ... (event handling logic) ...
  5. ```
  6. This event is called any time the [ConnectionPoolEntry.invalidate()]($ba04c3bd42280074.md#sqlalchemy.pool.ConnectionPoolEntry.invalidate "sqlalchemy.pool.ConnectionPoolEntry.invalidate") method is invoked with the `soft` flag.
  7. Soft invalidation refers to when the connection record that tracks this connection will force a reconnect after the current connection is checked in. It does not actively close the dbapi\_connection at the point at which it is called.
  8. New in version 1.0.3.
  9. - Parameters:
  10. - **dbapi\_connection** – a DBAPI connection. The [ConnectionPoolEntry.dbapi\_connection]($ba04c3bd42280074.md#sqlalchemy.pool.ConnectionPoolEntry.dbapi_connection "sqlalchemy.pool.ConnectionPoolEntry.dbapi_connection") attribute.
  11. - **connection\_record** – the [ConnectionPoolEntry]($ba04c3bd42280074.md#sqlalchemy.pool.ConnectionPoolEntry "sqlalchemy.pool.ConnectionPoolEntry") managing the DBAPI connection.
  12. - **exception** – the exception object corresponding to the reason for this invalidation, if any. May be `None`.

class sqlalchemy.events.PoolResetState

describes the state of a DBAPI connection as it is being passed to the PoolEvents.reset() connection pool event.

Members

asyncio_safe, terminate_only, transaction_was_reset

New in version 2.0.0b3.

  • attribute sqlalchemy.events.PoolResetState.asyncio_safe: bool

    Indicates if the reset operation is occurring within a scope where an enclosing event loop is expected to be present for asyncio applications.

    Will be False in the case that the connection is being garbage collected.

  • attribute sqlalchemy.events.PoolResetState.terminate_only: bool

    indicates if the connection is to be immediately terminated and not checked in to the pool.

    This occurs for connections that were invalidated, as well as asyncio connections that were not cleanly handled by the calling code that are instead being garbage collected. In the latter case, operations can’t be safely run on asyncio connections within garbage collection as there is not necessarily an event loop present.

  • attribute sqlalchemy.events.PoolResetState.transaction_was_reset: bool

    Indicates if the transaction on the DBAPI connection was already essentially “reset” back by the Connection object.

    This boolean is True if the Connection had transactional state present upon it, which was then not closed using the Connection.rollback() or Connection.commit() method; instead, the transaction was closed inline within the Connection.close() method so is guaranteed to remain non-present when this event is reached.

SQL Execution and Connection Events

Object NameDescription

ConnectionEvents

Available events for Connection and Engine.

DialectEvents

event interface for execution-replacement functions.

class sqlalchemy.events.ConnectionEvents

Available events for Connection and Engine.

The methods here define the name of an event as well as the names of members that are passed to listener functions.

An event listener can be associated with any Connection or Engine class or instance, such as an Engine, e.g.:

  1. from sqlalchemy import event, create_engine
  2. def before_cursor_execute(conn, cursor, statement, parameters, context,
  3. executemany):
  4. log.info("Received statement: %s", statement)
  5. engine = create_engine('postgresql+psycopg2://scott:tiger@localhost/test')
  6. event.listen(engine, "before_cursor_execute", before_cursor_execute)

or with a specific Connection:

  1. with engine.begin() as conn:
  2. @event.listens_for(conn, 'before_cursor_execute')
  3. def before_cursor_execute(conn, cursor, statement, parameters,
  4. context, executemany):
  5. log.info("Received statement: %s", statement)

When the methods are called with a statement parameter, such as in after_cursor_execute() or before_cursor_execute(), the statement is the exact SQL string that was prepared for transmission to the DBAPI cursor in the connection’s Dialect.

The before_execute() and before_cursor_execute() events can also be established with the retval=True flag, which allows modification of the statement and parameters to be sent to the database. The before_cursor_execute() event is particularly useful here to add ad-hoc string transformations, such as comments, to all executions:

  1. from sqlalchemy.engine import Engine
  2. from sqlalchemy import event
  3. @event.listens_for(Engine, "before_cursor_execute", retval=True)
  4. def comment_sql_calls(conn, cursor, statement, parameters,
  5. context, executemany):
  6. statement = statement + " -- some comment"
  7. return statement, parameters

Note

ConnectionEvents can be established on any combination of Engine, Connection, as well as instances of each of those classes. Events across all four scopes will fire off for a given instance of Connection. However, for performance reasons, the Connection object determines at instantiation time whether or not its parent Engine has event listeners established. Event listeners added to the Engine class or to an instance of Engine after the instantiation of a dependent Connection instance will usually not be available on that Connection instance. The newly added listeners will instead take effect for Connection instances created subsequent to those event listeners being established on the parent Engine class or instance.

  • Parameters:

    retval=False – Applies to the before_execute() and before_cursor_execute() events only. When True, the user-defined event function must have a return value, which is a tuple of parameters that replace the given statement and parameters. See those methods for a description of specific return arguments.

Members

after_cursor_execute(), after_execute(), before_cursor_execute(), before_execute(), begin(), begin_twophase(), commit(), commit_twophase(), dispatch, engine_connect(), engine_disposed(), prepare_twophase(), release_savepoint(), rollback(), rollback_savepoint(), rollback_twophase(), savepoint(), set_connection_execution_options(), set_engine_execution_options()

Class signature

class sqlalchemy.events.ConnectionEvents (sqlalchemy.event.Events)

  1. @event.listens_for(SomeEngine, 'after_cursor_execute')
  2. def receive_after_cursor_execute(conn, cursor, statement, parameters, context, executemany):
  3. "listen for the 'after_cursor_execute' event"
  4. # ... (event handling logic) ...
  5. ```
  6. - Parameters:
  7. - **conn** – [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") object
  8. - **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 [CursorResult]($3743e3464fa80ce7.md#sqlalchemy.engine.CursorResult "sqlalchemy.engine.CursorResult").
  9. - **statement** – string SQL statement, as passed to the DBAPI
  10. - **parameters** – Dictionary, tuple, or list of parameters being passed to the `execute()` or `executemany()` method of the DBAPI `cursor`. In some cases may be `None`.
  11. - **context** – [ExecutionContext]($4877d6ccc0778d3e.md#sqlalchemy.engine.ExecutionContext "sqlalchemy.engine.ExecutionContext") object in use. May be `None`.
  12. - **executemany** – boolean, if `True`, this is an `executemany()` call, if `False`, this is an `execute()` call.
  • method sqlalchemy.events.ConnectionEvents.after_execute(conn: Connection, clauseelement: Executable, multiparams: _CoreMultiExecuteParams, params: _CoreSingleExecuteParams, execution_options: _ExecuteOptions, result: Result[Any]) → None

    Intercept high level execute() events after execute.

    Example argument forms:

    ``` from sqlalchemy import event

  1. @event.listens_for(SomeEngine, 'after_execute')
  2. def receive_after_execute(conn, clauseelement, multiparams, params, execution_options, result):
  3. "listen for the 'after_execute' event"
  4. # ... (event handling logic) ...
  5. # DEPRECATED calling style (pre-1.4, will be removed in a future release)
  6. @event.listens_for(SomeEngine, 'after_execute')
  7. def receive_after_execute(conn, clauseelement, multiparams, params, result):
  8. "listen for the 'after_execute' event"
  9. # ... (event handling logic) ...
  10. ```
  11. Changed in version 1.4: The [ConnectionEvents.after\_execute()](#sqlalchemy.events.ConnectionEvents.after_execute "sqlalchemy.events.ConnectionEvents.after_execute") event now accepts the arguments [ConnectionEvents.after\_execute.conn](#sqlalchemy.events.ConnectionEvents.after_execute.params.conn "sqlalchemy.events.ConnectionEvents.after_execute"), [ConnectionEvents.after\_execute.clauseelement](#sqlalchemy.events.ConnectionEvents.after_execute.params.clauseelement "sqlalchemy.events.ConnectionEvents.after_execute"), [ConnectionEvents.after\_execute.multiparams](#sqlalchemy.events.ConnectionEvents.after_execute.params.multiparams "sqlalchemy.events.ConnectionEvents.after_execute"), [ConnectionEvents.after\_execute.params](#sqlalchemy.events.ConnectionEvents.after_execute.params.params "sqlalchemy.events.ConnectionEvents.after_execute"), [ConnectionEvents.after\_execute.execution\_options](#sqlalchemy.events.ConnectionEvents.after_execute.params.execution_options "sqlalchemy.events.ConnectionEvents.after_execute"), [ConnectionEvents.after\_execute.result](#sqlalchemy.events.ConnectionEvents.after_execute.params.result "sqlalchemy.events.ConnectionEvents.after_execute"). Support for listener functions which accept the previous argument signature(s) listed above as “deprecated” will be removed in a future release.
  12. - Parameters:
  13. - **conn** – [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") object
  14. - **clauseelement** – SQL expression construct, [Compiled]($4877d6ccc0778d3e.md#sqlalchemy.engine.Compiled "sqlalchemy.engine.Compiled") instance, or string statement passed to [Connection.execute()]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection.execute "sqlalchemy.engine.Connection.execute").
  15. - **multiparams** – Multiple parameter sets, a list of dictionaries.
  16. - **params** – Single parameter set, a single dictionary.
  17. - **execution\_options** –
  18. dictionary of execution options passed along with the statement, if any. This is a merge of all options that will be used, including those of the statement, the connection, and those passed in to the method itself for the 2.0 style of execution.
  19. - **result** – [CursorResult]($3743e3464fa80ce7.md#sqlalchemy.engine.CursorResult "sqlalchemy.engine.CursorResult") generated by the execution.
  • method sqlalchemy.events.ConnectionEvents.before_cursor_execute(conn: Connection, cursor: DBAPICursor, statement: str, parameters: _DBAPIAnyExecuteParams, context: Optional[ExecutionContext], executemany: bool) → Optional[Tuple[str, _DBAPIAnyExecuteParams]]

    Intercept low-level cursor execute() events before execution, receiving the string SQL statement and DBAPI-specific parameter list to be invoked against a cursor.

    Example argument forms:

    ``` from sqlalchemy import event

  1. @event.listens_for(SomeEngine, 'before_cursor_execute')
  2. def receive_before_cursor_execute(conn, cursor, statement, parameters, context, executemany):
  3. "listen for the 'before_cursor_execute' event"
  4. # ... (event handling logic) ...
  5. ```
  6. This event is a good choice for logging as well as late modifications to the SQL string. It’s less ideal for parameter modifications except for those which are specific to a target backend.
  7. This event can be optionally established with the `retval=True` flag. The `statement` and `parameters` arguments should be returned as a two-tuple in this case:
  8. ```
  9. @event.listens_for(Engine, "before_cursor_execute", retval=True)
  10. def before_cursor_execute(conn, cursor, statement,
  11. parameters, context, executemany):
  12. # do something with statement, parameters
  13. return statement, parameters
  14. ```
  15. See the example at [ConnectionEvents](#sqlalchemy.events.ConnectionEvents "sqlalchemy.events.ConnectionEvents").
  16. - Parameters:
  17. - **conn** – [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") object
  18. - **cursor** – DBAPI cursor object
  19. - **statement** – string SQL statement, as to be passed to the DBAPI
  20. - **parameters** – Dictionary, tuple, or list of parameters being passed to the `execute()` or `executemany()` method of the DBAPI `cursor`. In some cases may be `None`.
  21. - **context** – [ExecutionContext]($4877d6ccc0778d3e.md#sqlalchemy.engine.ExecutionContext "sqlalchemy.engine.ExecutionContext") object in use. May be `None`.
  22. - **executemany** – boolean, if `True`, this is an `executemany()` call, if `False`, this is an `execute()` call.
  23. See also
  24. [before\_execute()](#sqlalchemy.events.ConnectionEvents.before_execute "sqlalchemy.events.ConnectionEvents.before_execute")
  25. [after\_cursor\_execute()](#sqlalchemy.events.ConnectionEvents.after_cursor_execute "sqlalchemy.events.ConnectionEvents.after_cursor_execute")
  • method sqlalchemy.events.ConnectionEvents.before_execute(conn: Connection, clauseelement: Executable, multiparams: _CoreMultiExecuteParams, params: _CoreSingleExecuteParams, execution_options: _ExecuteOptions) → Optional[Tuple[Executable, _CoreMultiExecuteParams, _CoreSingleExecuteParams]]

    Intercept high level execute() events, receiving uncompiled SQL constructs and other objects prior to rendering into SQL.

    Example argument forms:

    ``` from sqlalchemy import event

  1. @event.listens_for(SomeEngine, 'before_execute')
  2. def receive_before_execute(conn, clauseelement, multiparams, params, execution_options):
  3. "listen for the 'before_execute' event"
  4. # ... (event handling logic) ...
  5. # DEPRECATED calling style (pre-1.4, will be removed in a future release)
  6. @event.listens_for(SomeEngine, 'before_execute')
  7. def receive_before_execute(conn, clauseelement, multiparams, params):
  8. "listen for the 'before_execute' event"
  9. # ... (event handling logic) ...
  10. ```
  11. Changed in version 1.4: The [ConnectionEvents.before\_execute()](#sqlalchemy.events.ConnectionEvents.before_execute "sqlalchemy.events.ConnectionEvents.before_execute") event now accepts the arguments [ConnectionEvents.before\_execute.conn](#sqlalchemy.events.ConnectionEvents.before_execute.params.conn "sqlalchemy.events.ConnectionEvents.before_execute"), [ConnectionEvents.before\_execute.clauseelement](#sqlalchemy.events.ConnectionEvents.before_execute.params.clauseelement "sqlalchemy.events.ConnectionEvents.before_execute"), [ConnectionEvents.before\_execute.multiparams](#sqlalchemy.events.ConnectionEvents.before_execute.params.multiparams "sqlalchemy.events.ConnectionEvents.before_execute"), [ConnectionEvents.before\_execute.params](#sqlalchemy.events.ConnectionEvents.before_execute.params.params "sqlalchemy.events.ConnectionEvents.before_execute"), [ConnectionEvents.before\_execute.execution\_options](#sqlalchemy.events.ConnectionEvents.before_execute.params.execution_options "sqlalchemy.events.ConnectionEvents.before_execute"). Support for listener functions which accept the previous argument signature(s) listed above as “deprecated” will be removed in a future release.
  12. This event is good for debugging SQL compilation issues as well as early manipulation of the parameters being sent to the database, as the parameter lists will be in a consistent format here.
  13. This event can be optionally established with the `retval=True` flag. The `clauseelement`, `multiparams`, and `params` arguments should be returned as a three-tuple in this case:
  14. ```
  15. @event.listens_for(Engine, "before_execute", retval=True)
  16. def before_execute(conn, clauseelement, multiparams, params):
  17. # do something with clauseelement, multiparams, params
  18. return clauseelement, multiparams, params
  19. ```
  20. - Parameters:
  21. - **conn** – [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") object
  22. - **clauseelement** – SQL expression construct, [Compiled]($4877d6ccc0778d3e.md#sqlalchemy.engine.Compiled "sqlalchemy.engine.Compiled") instance, or string statement passed to [Connection.execute()]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection.execute "sqlalchemy.engine.Connection.execute").
  23. - **multiparams** – Multiple parameter sets, a list of dictionaries.
  24. - **params** – Single parameter set, a single dictionary.
  25. - **execution\_options** –
  26. dictionary of execution options passed along with the statement, if any. This is a merge of all options that will be used, including those of the statement, the connection, and those passed in to the method itself for the 2.0 style of execution.
  27. See also
  28. [before\_cursor\_execute()](#sqlalchemy.events.ConnectionEvents.before_cursor_execute "sqlalchemy.events.ConnectionEvents.before_cursor_execute")
  1. @event.listens_for(SomeEngine, 'begin')
  2. def receive_begin(conn):
  3. "listen for the 'begin' event"
  4. # ... (event handling logic) ...
  5. ```
  6. - Parameters:
  7. **conn** – [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") object
  1. @event.listens_for(SomeEngine, 'begin_twophase')
  2. def receive_begin_twophase(conn, xid):
  3. "listen for the 'begin_twophase' event"
  4. # ... (event handling logic) ...
  5. ```
  6. - Parameters:
  7. - **conn** – [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") object
  8. - **xid** – two-phase XID identifier
  1. @event.listens_for(SomeEngine, 'commit')
  2. def receive_commit(conn):
  3. "listen for the 'commit' event"
  4. # ... (event handling logic) ...
  5. ```
  6. Note that the [Pool]($ba04c3bd42280074.md#sqlalchemy.pool.Pool "sqlalchemy.pool.Pool") may also “auto-commit” a DBAPI connection upon checkin, if the `reset_on_return` flag is set to the value `'commit'`. To intercept this commit, use the [PoolEvents.reset()](#sqlalchemy.events.PoolEvents.reset "sqlalchemy.events.PoolEvents.reset") hook.
  7. - Parameters:
  8. **conn** – [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") object
  1. @event.listens_for(SomeEngine, 'commit_twophase')
  2. def receive_commit_twophase(conn, xid, is_prepared):
  3. "listen for the 'commit_twophase' event"
  4. # ... (event handling logic) ...
  5. ```
  6. - Parameters:
  7. - **conn** – [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") object
  8. - **xid** – two-phase XID identifier
  9. - **is\_prepared** – boolean, indicates if [TwoPhaseTransaction.prepare()]($3743e3464fa80ce7.md#sqlalchemy.engine.TwoPhaseTransaction.prepare "sqlalchemy.engine.TwoPhaseTransaction.prepare") was called.
  1. @event.listens_for(SomeEngine, 'engine_connect')
  2. def receive_engine_connect(conn):
  3. "listen for the 'engine_connect' event"
  4. # ... (event handling logic) ...
  5. # DEPRECATED calling style (pre-2.0, will be removed in a future release)
  6. @event.listens_for(SomeEngine, 'engine_connect')
  7. def receive_engine_connect(conn, branch):
  8. "listen for the 'engine_connect' event"
  9. # ... (event handling logic) ...
  10. ```
  11. Changed in version 2.0: The [ConnectionEvents.engine\_connect()](#sqlalchemy.events.ConnectionEvents.engine_connect "sqlalchemy.events.ConnectionEvents.engine_connect") event now accepts the arguments [ConnectionEvents.engine\_connect.conn](#sqlalchemy.events.ConnectionEvents.engine_connect.params.conn "sqlalchemy.events.ConnectionEvents.engine_connect"). Support for listener functions which accept the previous argument signature(s) listed above as “deprecated” will be removed in a future release.
  12. This event is called typically as the direct result of calling the [Engine.connect()]($3743e3464fa80ce7.md#sqlalchemy.engine.Engine.connect "sqlalchemy.engine.Engine.connect") method.
  13. It differs from the [PoolEvents.connect()](#sqlalchemy.events.PoolEvents.connect "sqlalchemy.events.PoolEvents.connect") method, which refers to the actual connection to a database at the DBAPI level; a DBAPI connection may be pooled and reused for many operations. In contrast, this event refers only to the production of a higher level [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") wrapper around such a DBAPI connection.
  14. It also differs from the [PoolEvents.checkout()](#sqlalchemy.events.PoolEvents.checkout "sqlalchemy.events.PoolEvents.checkout") event in that it is specific to the [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") object, not the DBAPI connection that [PoolEvents.checkout()](#sqlalchemy.events.PoolEvents.checkout "sqlalchemy.events.PoolEvents.checkout") deals with, although this DBAPI connection is available here via the [Connection.connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection.connection "sqlalchemy.engine.Connection.connection") attribute. But note there can in fact be multiple [PoolEvents.checkout()](#sqlalchemy.events.PoolEvents.checkout "sqlalchemy.events.PoolEvents.checkout") events within the lifespan of a single [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") object, if that [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") is invalidated and re-established.
  15. - Parameters:
  16. **conn** – [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") object.
  17. See also
  18. [PoolEvents.checkout()](#sqlalchemy.events.PoolEvents.checkout "sqlalchemy.events.PoolEvents.checkout") the lower-level pool checkout event for an individual DBAPI connection
  1. @event.listens_for(SomeEngine, 'engine_disposed')
  2. def receive_engine_disposed(engine):
  3. "listen for the 'engine_disposed' event"
  4. # ... (event handling logic) ...
  5. ```
  6. The [Engine.dispose()]($3743e3464fa80ce7.md#sqlalchemy.engine.Engine.dispose "sqlalchemy.engine.Engine.dispose") method instructs the engine to “dispose” of it’s connection pool (e.g. [Pool]($ba04c3bd42280074.md#sqlalchemy.pool.Pool "sqlalchemy.pool.Pool")), and replaces it with a new one. Disposing of the old pool has the effect that existing checked-in connections are closed. The new pool does not establish any new connections until it is first used.
  7. This event can be used to indicate that resources related to the [Engine]($3743e3464fa80ce7.md#sqlalchemy.engine.Engine "sqlalchemy.engine.Engine") should also be cleaned up, keeping in mind that the [Engine]($3743e3464fa80ce7.md#sqlalchemy.engine.Engine "sqlalchemy.engine.Engine") can still be used for new requests in which case it re-acquires connection resources.
  8. New in version 1.0.5.
  1. @event.listens_for(SomeEngine, 'prepare_twophase')
  2. def receive_prepare_twophase(conn, xid):
  3. "listen for the 'prepare_twophase' event"
  4. # ... (event handling logic) ...
  5. ```
  6. - Parameters:
  7. - **conn** – [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") object
  8. - **xid** – two-phase XID identifier
  1. @event.listens_for(SomeEngine, 'release_savepoint')
  2. def receive_release_savepoint(conn, name, context):
  3. "listen for the 'release_savepoint' event"
  4. # ... (event handling logic) ...
  5. ```
  6. - Parameters:
  7. - **conn** – [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") object
  8. - **name** – specified name used for the savepoint.
  9. - **context** – not used
  1. @event.listens_for(SomeEngine, 'rollback')
  2. def receive_rollback(conn):
  3. "listen for the 'rollback' event"
  4. # ... (event handling logic) ...
  5. ```
  6. Note that the [Pool]($ba04c3bd42280074.md#sqlalchemy.pool.Pool "sqlalchemy.pool.Pool") also “auto-rolls back” a DBAPI connection upon checkin, if the `reset_on_return` flag is set to its default value of `'rollback'`. To intercept this rollback, use the [PoolEvents.reset()](#sqlalchemy.events.PoolEvents.reset "sqlalchemy.events.PoolEvents.reset") hook.
  7. - Parameters:
  8. **conn** – [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") object
  9. See also
  10. [PoolEvents.reset()](#sqlalchemy.events.PoolEvents.reset "sqlalchemy.events.PoolEvents.reset")
  1. @event.listens_for(SomeEngine, 'rollback_savepoint')
  2. def receive_rollback_savepoint(conn, name, context):
  3. "listen for the 'rollback_savepoint' event"
  4. # ... (event handling logic) ...
  5. ```
  6. - Parameters:
  7. - **conn** – [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") object
  8. - **name** – specified name used for the savepoint.
  9. - **context** – not used
  1. @event.listens_for(SomeEngine, 'rollback_twophase')
  2. def receive_rollback_twophase(conn, xid, is_prepared):
  3. "listen for the 'rollback_twophase' event"
  4. # ... (event handling logic) ...
  5. ```
  6. - Parameters:
  7. - **conn** – [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") object
  8. - **xid** – two-phase XID identifier
  9. - **is\_prepared** – boolean, indicates if [TwoPhaseTransaction.prepare()]($3743e3464fa80ce7.md#sqlalchemy.engine.TwoPhaseTransaction.prepare "sqlalchemy.engine.TwoPhaseTransaction.prepare") was called.
  1. @event.listens_for(SomeEngine, 'savepoint')
  2. def receive_savepoint(conn, name):
  3. "listen for the 'savepoint' event"
  4. # ... (event handling logic) ...
  5. ```
  6. - Parameters:
  7. - **conn** – [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") object
  8. - **name** – specified name used for the savepoint.
  1. @event.listens_for(SomeEngine, 'set_connection_execution_options')
  2. def receive_set_connection_execution_options(conn, opts):
  3. "listen for the 'set_connection_execution_options' event"
  4. # ... (event handling logic) ...
  5. ```
  6. This method is called after the new [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") has been produced, with the newly updated execution options collection, but before the [Dialect]($4877d6ccc0778d3e.md#sqlalchemy.engine.Dialect "sqlalchemy.engine.Dialect") has acted upon any of those new options.
  7. Note that this method is not called when a new [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") is produced which is inheriting execution options from its parent [Engine]($3743e3464fa80ce7.md#sqlalchemy.engine.Engine "sqlalchemy.engine.Engine"); to intercept this condition, use the [ConnectionEvents.engine\_connect()](#sqlalchemy.events.ConnectionEvents.engine_connect "sqlalchemy.events.ConnectionEvents.engine_connect") event.
  8. - Parameters:
  9. - **conn** – The newly copied [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") object
  10. - **opts** –
  11. dictionary of options that were passed to the [Connection.execution\_options()]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection.execution_options "sqlalchemy.engine.Connection.execution_options") method. This dictionary may be modified in place to affect the ultimate options which take effect.
  12. New in version 2.0: the `opts` dictionary may be modified in place.
  13. See also
  14. [ConnectionEvents.set\_engine\_execution\_options()](#sqlalchemy.events.ConnectionEvents.set_engine_execution_options "sqlalchemy.events.ConnectionEvents.set_engine_execution_options") - event which is called when [Engine.execution\_options()]($3743e3464fa80ce7.md#sqlalchemy.engine.Engine.execution_options "sqlalchemy.engine.Engine.execution_options") is called.
  1. @event.listens_for(SomeEngine, 'set_engine_execution_options')
  2. def receive_set_engine_execution_options(engine, opts):
  3. "listen for the 'set_engine_execution_options' event"
  4. # ... (event handling logic) ...
  5. ```
  6. The [Engine.execution\_options()]($3743e3464fa80ce7.md#sqlalchemy.engine.Engine.execution_options "sqlalchemy.engine.Engine.execution_options") method produces a shallow copy of the [Engine]($3743e3464fa80ce7.md#sqlalchemy.engine.Engine "sqlalchemy.engine.Engine") which stores the new options. That new [Engine]($3743e3464fa80ce7.md#sqlalchemy.engine.Engine "sqlalchemy.engine.Engine") is passed here. A particular application of this method is to add a [ConnectionEvents.engine\_connect()](#sqlalchemy.events.ConnectionEvents.engine_connect "sqlalchemy.events.ConnectionEvents.engine_connect") event handler to the given [Engine]($3743e3464fa80ce7.md#sqlalchemy.engine.Engine "sqlalchemy.engine.Engine") which will perform some per- [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") task specific to these execution options.
  7. - Parameters:
  8. - **conn** – The newly copied [Engine]($3743e3464fa80ce7.md#sqlalchemy.engine.Engine "sqlalchemy.engine.Engine") object
  9. - **opts** –
  10. dictionary of options that were passed to the [Connection.execution\_options()]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection.execution_options "sqlalchemy.engine.Connection.execution_options") method. This dictionary may be modified in place to affect the ultimate options which take effect.
  11. New in version 2.0: the `opts` dictionary may be modified in place.
  12. See also
  13. [ConnectionEvents.set\_connection\_execution\_options()](#sqlalchemy.events.ConnectionEvents.set_connection_execution_options "sqlalchemy.events.ConnectionEvents.set_connection_execution_options") - event which is called when [Connection.execution\_options()]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection.execution_options "sqlalchemy.engine.Connection.execution_options") is called.

class sqlalchemy.events.DialectEvents

event interface for execution-replacement functions.

These events allow direct instrumentation and replacement of key dialect functions which interact with the DBAPI.

Note

DialectEvents hooks should be considered semi-public and experimental. These hooks are not for general use and are only for those situations where intricate re-statement of DBAPI mechanics must be injected onto an existing dialect. For general-use statement-interception events, please use the ConnectionEvents interface.

See also

ConnectionEvents.before_cursor_execute()

ConnectionEvents.before_execute()

ConnectionEvents.after_cursor_execute()

ConnectionEvents.after_execute()

New in version 0.9.4.

Members

dispatch, do_connect(), do_execute(), do_execute_no_params(), do_executemany(), do_setinputsizes(), handle_error()

Class signature

class sqlalchemy.events.DialectEvents (sqlalchemy.event.Events)

  1. @event.listens_for(SomeEngine, 'do_connect')
  2. def receive_do_connect(dialect, conn_rec, cargs, cparams):
  3. "listen for the 'do_connect' event"
  4. # ... (event handling logic) ...
  5. ```
  6. This event is useful in that it allows the handler to manipulate the cargs and/or cparams collections that control how the DBAPI `connect()` function will be called. `cargs` will always be a Python list that can be mutated in-place, and `cparams` a Python dictionary that may also be mutated:
  7. ```
  8. e = create_engine("postgresql+psycopg2://user@host/dbname")
  9. @event.listens_for(e, 'do_connect')
  10. def receive_do_connect(dialect, conn_rec, cargs, cparams):
  11. cparams["password"] = "some_password"
  12. ```
  13. The event hook may also be used to override the call to `connect()` entirely, by returning a non-`None` DBAPI connection object:
  14. ```
  15. e = create_engine("postgresql+psycopg2://user@host/dbname")
  16. @event.listens_for(e, 'do_connect')
  17. def receive_do_connect(dialect, conn_rec, cargs, cparams):
  18. return psycopg2.connect(*cargs, **cparams)
  19. ```
  20. New in version 1.0.3.
  21. See also
  22. [Custom DBAPI connect() arguments / on-connect routines]($5bcc461417e5d55c.md#custom-dbapi-args)
  1. @event.listens_for(SomeEngine, 'do_execute')
  2. def receive_do_execute(cursor, statement, parameters, context):
  3. "listen for the 'do_execute' event"
  4. # ... (event handling logic) ...
  5. ```
  6. Return the value True to halt further events from invoking, and to indicate that the cursor execution has already taken place within the event handler.
  1. @event.listens_for(SomeEngine, 'do_execute_no_params')
  2. def receive_do_execute_no_params(cursor, statement, context):
  3. "listen for the 'do_execute_no_params' event"
  4. # ... (event handling logic) ...
  5. ```
  6. Return the value True to halt further events from invoking, and to indicate that the cursor execution has already taken place within the event handler.
  1. @event.listens_for(SomeEngine, 'do_executemany')
  2. def receive_do_executemany(cursor, statement, parameters, context):
  3. "listen for the 'do_executemany' event"
  4. # ... (event handling logic) ...
  5. ```
  6. Return the value True to halt further events from invoking, and to indicate that the cursor execution has already taken place within the event handler.
  1. @event.listens_for(SomeEngine, 'do_setinputsizes')
  2. def receive_do_setinputsizes(inputsizes, cursor, statement, parameters, context):
  3. "listen for the 'do_setinputsizes' event"
  4. # ... (event handling logic) ...
  5. ```
  6. This event is emitted in the case where the dialect makes use of the DBAPI `cursor.setinputsizes()` method which passes information about parameter binding for a particular statement. The given `inputsizes` dictionary will contain [BindParameter]($aafca12b71ff5dd3.md#sqlalchemy.sql.expression.BindParameter "sqlalchemy.sql.expression.BindParameter") objects as keys, linked to DBAPI-specific type objects as values; for parameters that are not bound, they are added to the dictionary with `None` as the value, which means the parameter will not be included in the ultimate setinputsizes call. The event may be used to inspect and/or log the datatypes that are being bound, as well as to modify the dictionary in place. Parameters can be added, modified, or removed from this dictionary. Callers will typically want to inspect the `BindParameter.type` attribute of the given bind objects in order to make decisions about the DBAPI object.
  7. After the event, the `inputsizes` dictionary is converted into an appropriate datastructure to be passed to `cursor.setinputsizes`; either a list for a positional bound parameter execution style, or a dictionary of string parameter keys to DBAPI type objects for a named bound parameter execution style.
  8. The setinputsizes hook overall is only used for dialects which include the flag `use_setinputsizes=True`. Dialects which use this include cx\_Oracle, pg8000, asyncpg, and pyodbc dialects.
  9. Note
  10. For use with pyodbc, the `use_setinputsizes` flag must be passed to the dialect, e.g.:
  11. ```
  12. create_engine("mssql+pyodbc://...", use_setinputsizes=True)
  13. ```
  14. See also
  15. [Setinputsizes Support]($6934fd6e6a9b44d0.md#mssql-pyodbc-setinputsizes)
  16. New in version 1.2.9.
  17. See also
  18. [Fine grained control over cx\_Oracle data binding performance with setinputsizes]($ad7463812e601793.md#cx-oracle-setinputsizes)
  1. @event.listens_for(SomeEngine, 'handle_error')
  2. def receive_handle_error(exception_context):
  3. "listen for the 'handle_error' event"
  4. # ... (event handling logic) ...
  5. ```
  6. Changed in version 2.0: the [DialectEvents.handle\_error()](#sqlalchemy.events.DialectEvents.handle_error "sqlalchemy.events.DialectEvents.handle_error") event is moved to the [DialectEvents](#sqlalchemy.events.DialectEvents "sqlalchemy.events.DialectEvents") class, moved from the [ConnectionEvents](#sqlalchemy.events.ConnectionEvents "sqlalchemy.events.ConnectionEvents") class, so that it may also participate in the “pre ping” operation configured with the [create\_engine.pool\_pre\_ping]($5bcc461417e5d55c.md#sqlalchemy.create_engine.params.pool_pre_ping "sqlalchemy.create_engine") parameter. The event remains registered by using the [Engine]($3743e3464fa80ce7.md#sqlalchemy.engine.Engine "sqlalchemy.engine.Engine") as the event target, however note that using the [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") as an event target for [DialectEvents.handle\_error()](#sqlalchemy.events.DialectEvents.handle_error "sqlalchemy.events.DialectEvents.handle_error") is no longer supported.
  7. This includes all exceptions emitted by the DBAPI as well as within SQLAlchemy’s statement invocation process, including encoding errors and other statement validation errors. Other areas in which the event is invoked include transaction begin and end, result row fetching, cursor creation.
  8. Note that [handle\_error()](#sqlalchemy.events.DialectEvents.handle_error "sqlalchemy.events.DialectEvents.handle_error") may support new kinds of exceptions and new calling scenarios at _any time_. Code which uses this event must expect new calling patterns to be present in minor releases.
  9. To support the wide variety of members that correspond to an exception, as well as to allow extensibility of the event without backwards incompatibility, the sole argument received is an instance of [ExceptionContext]($3743e3464fa80ce7.md#sqlalchemy.engine.ExceptionContext "sqlalchemy.engine.ExceptionContext"). This object contains data members representing detail about the exception.
  10. Use cases supported by this hook include:
  11. - read-only, low-level exception handling for logging and debugging purposes
  12. - Establishing whether a DBAPI connection error message indicates that the database connection needs to be reconnected, including for the “pre\_ping” handler used by **some** dialects
  13. - Establishing or disabling whether a connection or the owning connection pool is invalidated or expired in response to a specific exception
  14. - exception re-writing
  15. The hook is called while the cursor from the failed operation (if any) is still open and accessible. Special cleanup operations can be called on this cursor; SQLAlchemy will attempt to close this cursor subsequent to this hook being invoked.
  16. As of SQLAlchemy 2.0, the “pre\_ping” handler enabled using the [create\_engine.pool\_pre\_ping]($5bcc461417e5d55c.md#sqlalchemy.create_engine.params.pool_pre_ping "sqlalchemy.create_engine") parameter will also participate in the [handle\_error()](#sqlalchemy.events.DialectEvents.handle_error "sqlalchemy.events.DialectEvents.handle_error") process, **for those dialects that rely upon disconnect codes to detect database liveness**. Note that some dialects such as psycopg, psycopg2, and most MySQL dialects make use of a native `ping()` method supplied by the DBAPI which does not make use of disconnect codes.
  17. A handler function has two options for replacing the SQLAlchemy-constructed exception into one that is user defined. It can either raise this new exception directly, in which case all further event listeners are bypassed and the exception will be raised, after appropriate cleanup as taken place:
  18. ```
  19. @event.listens_for(Engine, "handle_error")
  20. def handle_exception(context):
  21. if isinstance(context.original_exception,
  22. psycopg2.OperationalError) and \
  23. "failed" in str(context.original_exception):
  24. raise MySpecialException("failed operation")
  25. ```
  26. Warning
  27. Because the [DialectEvents.handle\_error()](#sqlalchemy.events.DialectEvents.handle_error "sqlalchemy.events.DialectEvents.handle_error") event specifically provides for exceptions to be re-thrown as the ultimate exception raised by the failed statement, **stack traces will be misleading** if the user-defined event handler itself fails and throws an unexpected exception; the stack trace may not illustrate the actual code line that failed! It is advised to code carefully here and use logging and/or inline debugging if unexpected exceptions are occurring.
  28. Alternatively, a “chained” style of event handling can be used, by configuring the handler with the `retval=True` modifier and returning the new exception instance from the function. In this case, event handling will continue onto the next handler. The “chained” exception is available using [ExceptionContext.chained\_exception]($3743e3464fa80ce7.md#sqlalchemy.engine.ExceptionContext.chained_exception "sqlalchemy.engine.ExceptionContext.chained_exception"):
  29. ```
  30. @event.listens_for(Engine, "handle_error", retval=True)
  31. def handle_exception(context):
  32. if context.chained_exception is not None and \
  33. "special" in context.chained_exception.message:
  34. return MySpecialException("failed",
  35. cause=context.chained_exception)
  36. ```
  37. Handlers that return `None` may be used within the chain; when a handler returns `None`, the previous exception instance, if any, is maintained as the current exception that is passed onto the next handler.
  38. When a custom exception is raised or returned, SQLAlchemy raises this new exception as-is, it is not wrapped by any SQLAlchemy object. If the exception is not a subclass of [sqlalchemy.exc.StatementError]($40db62cb9ae746c0.md#sqlalchemy.exc.StatementError "sqlalchemy.exc.StatementError"), certain features may not be available; currently this includes the ORM’s feature of adding a detail hint about “autoflush” to exceptions raised within the autoflush process.
  39. - Parameters:
  40. **context** – an [ExceptionContext]($3743e3464fa80ce7.md#sqlalchemy.engine.ExceptionContext "sqlalchemy.engine.ExceptionContext") object. See this class for details on all available members.
  41. See also
  42. [Supporting new database error codes for disconnect scenarios]($ba04c3bd42280074.md#pool-new-disconnect-codes)

Schema Events

Object NameDescription

DDLEvents

Define event listeners for schema objects, that is, SchemaItem and other SchemaEventTarget subclasses, including MetaData, Table, Column, etc.

SchemaEventTarget

Base class for elements that are the targets of DDLEvents events.

class sqlalchemy.events.DDLEvents

Define event listeners for schema objects, that is, SchemaItem and other SchemaEventTarget subclasses, including MetaData, Table, Column, etc.

Create / Drop Events

Events emitted when CREATE and DROP commands are emitted to the database. The event hooks in this category include DDLEvents.before_create(), DDLEvents.after_create(), DDLEvents.before_drop(), and DDLEvents.after_drop().

These events are emitted when using schema-level methods such as MetaData.create_all() and MetaData.drop_all(). Per-object create/drop methods such as Table.create(), Table.drop(), Index.create() are also included, as well as dialect-specific methods such as ENUM.create().

New in version 2.0: DDLEvents event hooks now take place for non-table objects including constraints, indexes, and dialect-specific schema types.

Event hooks may be attached directly to a Table object or to a MetaData collection, as well as to any SchemaItem class or object that can be individually created and dropped using a distinct SQL command. Such classes include Index, Sequence, and dialect-specific classes such as ENUM.

Example using the DDLEvents.after_create() event, where a custom event hook will emit an ALTER TABLE command on the current connection, after CREATE TABLE is emitted:

  1. from sqlalchemy import create_engine
  2. from sqlalchemy import event
  3. from sqlalchemy import Table, Column, Metadata, Integer
  4. m = MetaData()
  5. some_table = Table('some_table', m, Column('data', Integer))
  6. @event.listens_for(some_table, "after_create")
  7. def after_create(target, connection, **kw):
  8. connection.execute(text(
  9. "ALTER TABLE %s SET name=foo_%s" % (target.name, target.name)
  10. ))
  11. some_engine = create_engine("postgresql://scott:tiger@host/test")
  12. # will emit "CREATE TABLE some_table" as well as the above
  13. # "ALTER TABLE" statement afterwards
  14. m.create_all(some_engine)

Constraint objects such as ForeignKeyConstraint, UniqueConstraint, CheckConstraint may also be subscribed to these events, however they will not normally produce events as these objects are usually rendered inline within an enclosing CREATE TABLE statement and implicitly dropped from a DROP TABLE statement.

For the Index construct, the event hook will be emitted for CREATE INDEX, however SQLAlchemy does not normally emit DROP INDEX when dropping tables as this is again implicit within the DROP TABLE statement.

New in version 2.0: Support for SchemaItem objects for create/drop events was expanded from its previous support for MetaData and Table to also include Constraint and all subclasses, Index, Sequence and some type-related constructs such as ENUM.

Note

These event hooks are only emitted within the scope of SQLAlchemy’s create/drop methods; they are not necessarily supported by tools such as alembic.

Attachment Events

Attachment events are provided to customize behavior whenever a child schema element is associated with a parent, such as when a Column is associated with its Table, when a ForeignKeyConstraint is associated with a Table, etc. These events include DDLEvents.before_parent_attach() and DDLEvents.after_parent_attach().

Reflection Events

The DDLEvents.column_reflect() event is used to intercept and modify the in-Python definition of database columns when reflection of database tables proceeds.

Use with Generic DDL

DDL events integrate closely with the DDL class and the ExecutableDDLElement hierarchy of DDL clause constructs, which are themselves appropriate as listener callables:

  1. from sqlalchemy import DDL
  2. event.listen(
  3. some_table,
  4. "after_create",
  5. DDL("ALTER TABLE %(table)s SET name=foo_%(table)s")
  6. )

Event Propagation to MetaData Copies

For all DDLEvent events, the propagate=True keyword argument will ensure that a given event handler is propagated to copies of the object, which are made when using the Table.to_metadata() method:

  1. from sqlalchemy import DDL
  2. metadata = MetaData()
  3. some_table = Table("some_table", metadata, Column("data", Integer))
  4. event.listen(
  5. some_table,
  6. "after_create",
  7. DDL("ALTER TABLE %(table)s SET name=foo_%(table)s"),
  8. propagate=True
  9. )
  10. new_metadata = MetaData()
  11. new_table = some_table.to_metadata(new_metadata)

The above DDL object will be associated with the DDLEvents.after_create() event for both the some_table and the new_table Table objects.

See also

Events

ExecutableDDLElement

DDL

Controlling DDL Sequences

Members

after_create(), after_drop(), after_parent_attach(), before_create(), before_drop(), before_parent_attach(), column_reflect(), dispatch

Class signature

class sqlalchemy.events.DDLEvents (sqlalchemy.event.Events)

  1. @event.listens_for(SomeSchemaClassOrObject, 'after_create')
  2. def receive_after_create(target, connection, **kw):
  3. "listen for the 'after_create' event"
  4. # ... (event handling logic) ...
  5. ```
  6. - Parameters:
  7. - **target** –
  8. the `SchemaObject`, such as a [MetaData]($e81afa1a43dcc92a.md#sqlalchemy.schema.MetaData "sqlalchemy.schema.MetaData") or [Table]($e81afa1a43dcc92a.md#sqlalchemy.schema.Table "sqlalchemy.schema.Table") but also including all create/drop objects such as [Index]($bfd9186e74b37638.md#sqlalchemy.schema.Index "sqlalchemy.schema.Index"), [Sequence]($6bf23ed88b114c55.md#sqlalchemy.schema.Sequence "sqlalchemy.schema.Sequence"), etc., object which is the target of the event.
  9. New in version 2.0: Support for all [SchemaItem]($e81afa1a43dcc92a.md#sqlalchemy.schema.SchemaItem "sqlalchemy.schema.SchemaItem") objects was added.
  10. - **connection** – the [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") where the CREATE statement or statements have been emitted.
  11. - **\*\*kw** – additional keyword arguments relevant to the event. The contents of this dictionary may vary across releases, and include the list of tables being generated for a metadata-level event, the checkfirst flag, and other elements used by internal events.
  12. [listen()]($3f6dba762b02614b.md#sqlalchemy.event.listen "sqlalchemy.event.listen") also accepts the `propagate=True` modifier for this event; when True, the listener function will be established for any copies made of the target object, i.e. those copies that are generated when [Table.to\_metadata()]($e81afa1a43dcc92a.md#sqlalchemy.schema.Table.to_metadata "sqlalchemy.schema.Table.to_metadata") is used.
  1. @event.listens_for(SomeSchemaClassOrObject, 'after_drop')
  2. def receive_after_drop(target, connection, **kw):
  3. "listen for the 'after_drop' event"
  4. # ... (event handling logic) ...
  5. ```
  6. - Parameters:
  7. - **target** –
  8. the `SchemaObject`, such as a [MetaData]($e81afa1a43dcc92a.md#sqlalchemy.schema.MetaData "sqlalchemy.schema.MetaData") or [Table]($e81afa1a43dcc92a.md#sqlalchemy.schema.Table "sqlalchemy.schema.Table") but also including all create/drop objects such as [Index]($bfd9186e74b37638.md#sqlalchemy.schema.Index "sqlalchemy.schema.Index"), [Sequence]($6bf23ed88b114c55.md#sqlalchemy.schema.Sequence "sqlalchemy.schema.Sequence"), etc., object which is the target of the event.
  9. New in version 2.0: Support for all [SchemaItem]($e81afa1a43dcc92a.md#sqlalchemy.schema.SchemaItem "sqlalchemy.schema.SchemaItem") objects was added.
  10. - **connection** – the [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") where the DROP statement or statements have been emitted.
  11. - **\*\*kw** – additional keyword arguments relevant to the event. The contents of this dictionary may vary across releases, and include the list of tables being generated for a metadata-level event, the checkfirst flag, and other elements used by internal events.
  12. [listen()]($3f6dba762b02614b.md#sqlalchemy.event.listen "sqlalchemy.event.listen") also accepts the `propagate=True` modifier for this event; when True, the listener function will be established for any copies made of the target object, i.e. those copies that are generated when [Table.to\_metadata()]($e81afa1a43dcc92a.md#sqlalchemy.schema.Table.to_metadata "sqlalchemy.schema.Table.to_metadata") is used.
  1. @event.listens_for(SomeSchemaClassOrObject, 'after_parent_attach')
  2. def receive_after_parent_attach(target, parent):
  3. "listen for the 'after_parent_attach' event"
  4. # ... (event handling logic) ...
  5. ```
  6. - Parameters:
  7. - **target** – the target object
  8. - **parent** – the parent to which the target is being attached.
  9. [listen()]($3f6dba762b02614b.md#sqlalchemy.event.listen "sqlalchemy.event.listen") also accepts the `propagate=True` modifier for this event; when True, the listener function will be established for any copies made of the target object, i.e. those copies that are generated when [Table.to\_metadata()]($e81afa1a43dcc92a.md#sqlalchemy.schema.Table.to_metadata "sqlalchemy.schema.Table.to_metadata") is used.
  1. @event.listens_for(SomeSchemaClassOrObject, 'before_create')
  2. def receive_before_create(target, connection, **kw):
  3. "listen for the 'before_create' event"
  4. # ... (event handling logic) ...
  5. ```
  6. - Parameters:
  7. - **target** –
  8. the `SchemaObject`, such as a [MetaData]($e81afa1a43dcc92a.md#sqlalchemy.schema.MetaData "sqlalchemy.schema.MetaData") or [Table]($e81afa1a43dcc92a.md#sqlalchemy.schema.Table "sqlalchemy.schema.Table") but also including all create/drop objects such as [Index]($bfd9186e74b37638.md#sqlalchemy.schema.Index "sqlalchemy.schema.Index"), [Sequence]($6bf23ed88b114c55.md#sqlalchemy.schema.Sequence "sqlalchemy.schema.Sequence"), etc., object which is the target of the event.
  9. New in version 2.0: Support for all [SchemaItem]($e81afa1a43dcc92a.md#sqlalchemy.schema.SchemaItem "sqlalchemy.schema.SchemaItem") objects was added.
  10. - **connection** – the [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") where the CREATE statement or statements will be emitted.
  11. - **\*\*kw** – additional keyword arguments relevant to the event. The contents of this dictionary may vary across releases, and include the list of tables being generated for a metadata-level event, the checkfirst flag, and other elements used by internal events.
  12. [listen()]($3f6dba762b02614b.md#sqlalchemy.event.listen "sqlalchemy.event.listen") accepts the `propagate=True` modifier for this event; when True, the listener function will be established for any copies made of the target object, i.e. those copies that are generated when [Table.to\_metadata()]($e81afa1a43dcc92a.md#sqlalchemy.schema.Table.to_metadata "sqlalchemy.schema.Table.to_metadata") is used.
  13. [listen()]($3f6dba762b02614b.md#sqlalchemy.event.listen "sqlalchemy.event.listen") accepts the `insert=True` modifier for this event; when True, the listener function will be prepended to the internal list of events upon discovery, and execute before registered listener functions that do not pass this argument.
  1. @event.listens_for(SomeSchemaClassOrObject, 'before_drop')
  2. def receive_before_drop(target, connection, **kw):
  3. "listen for the 'before_drop' event"
  4. # ... (event handling logic) ...
  5. ```
  6. - Parameters:
  7. - **target** –
  8. the `SchemaObject`, such as a [MetaData]($e81afa1a43dcc92a.md#sqlalchemy.schema.MetaData "sqlalchemy.schema.MetaData") or [Table]($e81afa1a43dcc92a.md#sqlalchemy.schema.Table "sqlalchemy.schema.Table") but also including all create/drop objects such as [Index]($bfd9186e74b37638.md#sqlalchemy.schema.Index "sqlalchemy.schema.Index"), [Sequence]($6bf23ed88b114c55.md#sqlalchemy.schema.Sequence "sqlalchemy.schema.Sequence"), etc., object which is the target of the event.
  9. New in version 2.0: Support for all [SchemaItem]($e81afa1a43dcc92a.md#sqlalchemy.schema.SchemaItem "sqlalchemy.schema.SchemaItem") objects was added.
  10. - **connection** – the [Connection]($3743e3464fa80ce7.md#sqlalchemy.engine.Connection "sqlalchemy.engine.Connection") where the DROP statement or statements will be emitted.
  11. - **\*\*kw** – additional keyword arguments relevant to the event. The contents of this dictionary may vary across releases, and include the list of tables being generated for a metadata-level event, the checkfirst flag, and other elements used by internal events.
  12. [listen()]($3f6dba762b02614b.md#sqlalchemy.event.listen "sqlalchemy.event.listen") also accepts the `propagate=True` modifier for this event; when True, the listener function will be established for any copies made of the target object, i.e. those copies that are generated when [Table.to\_metadata()]($e81afa1a43dcc92a.md#sqlalchemy.schema.Table.to_metadata "sqlalchemy.schema.Table.to_metadata") is used.
  1. @event.listens_for(SomeSchemaClassOrObject, 'before_parent_attach')
  2. def receive_before_parent_attach(target, parent):
  3. "listen for the 'before_parent_attach' event"
  4. # ... (event handling logic) ...
  5. ```
  6. - Parameters:
  7. - **target** – the target object
  8. - **parent** – the parent to which the target is being attached.
  9. [listen()]($3f6dba762b02614b.md#sqlalchemy.event.listen "sqlalchemy.event.listen") also accepts the `propagate=True` modifier for this event; when True, the listener function will be established for any copies made of the target object, i.e. those copies that are generated when [Table.to\_metadata()]($e81afa1a43dcc92a.md#sqlalchemy.schema.Table.to_metadata "sqlalchemy.schema.Table.to_metadata") is used.
  1. @event.listens_for(SomeSchemaClassOrObject, 'column_reflect')
  2. def receive_column_reflect(inspector, table, column_info):
  3. "listen for the 'column_reflect' event"
  4. # ... (event handling logic) ...
  5. ```
  6. This event is most easily used by applying it to a specific [MetaData]($e81afa1a43dcc92a.md#sqlalchemy.schema.MetaData "sqlalchemy.schema.MetaData") instance, where it will take effect for all [Table]($e81afa1a43dcc92a.md#sqlalchemy.schema.Table "sqlalchemy.schema.Table") objects within that [MetaData]($e81afa1a43dcc92a.md#sqlalchemy.schema.MetaData "sqlalchemy.schema.MetaData") that undergo reflection:
  7. ```
  8. metadata = MetaData()
  9. @event.listens_for(metadata, 'column_reflect')
  10. def receive_column_reflect(inspector, table, column_info):
  11. # receives for all Table objects that are reflected
  12. # under this MetaData
  13. # will use the above event hook
  14. my_table = Table("my_table", metadata, autoload_with=some_engine)
  15. ```
  16. New in version 1.4.0b2: The [DDLEvents.column\_reflect()](#sqlalchemy.events.DDLEvents.column_reflect "sqlalchemy.events.DDLEvents.column_reflect") hook may now be applied to a [MetaData]($e81afa1a43dcc92a.md#sqlalchemy.schema.MetaData "sqlalchemy.schema.MetaData") object as well as the [MetaData]($e81afa1a43dcc92a.md#sqlalchemy.schema.MetaData "sqlalchemy.schema.MetaData") class itself where it will take place for all [Table]($e81afa1a43dcc92a.md#sqlalchemy.schema.Table "sqlalchemy.schema.Table") objects associated with the targeted [MetaData]($e81afa1a43dcc92a.md#sqlalchemy.schema.MetaData "sqlalchemy.schema.MetaData").
  17. It may also be applied to the [Table]($e81afa1a43dcc92a.md#sqlalchemy.schema.Table "sqlalchemy.schema.Table") class across the board:
  18. ```
  19. from sqlalchemy import Table
  20. @event.listens_for(Table, 'column_reflect')
  21. def receive_column_reflect(inspector, table, column_info):
  22. # receives for all Table objects that are reflected
  23. ```
  24. It can also be applied to a specific [Table]($e81afa1a43dcc92a.md#sqlalchemy.schema.Table "sqlalchemy.schema.Table") at the point that one is being reflected using the [Table.listeners]($e81afa1a43dcc92a.md#sqlalchemy.schema.Table.params.listeners "sqlalchemy.schema.Table") parameter:
  25. ```
  26. t1 = Table(
  27. "my_table",
  28. autoload_with=some_engine,
  29. listeners=[
  30. ('column_reflect', receive_column_reflect)
  31. ]
  32. )
  33. ```
  34. The dictionary of column information as returned by the dialect is passed, and can be modified. The dictionary is that returned in each element of the list returned by [Inspector.get\_columns()]($17d943c9e6549dba.md#sqlalchemy.engine.reflection.Inspector.get_columns "sqlalchemy.engine.reflection.Inspector.get_columns"):
  35. > - `name` - the column’s name, is applied to the [Column.name]($e81afa1a43dcc92a.md#sqlalchemy.schema.Column.params.name "sqlalchemy.schema.Column") parameter
  36. >
  37. > - `type` - the type of this column, which should be an instance of [TypeEngine]($3b93085a84d4163f.md#sqlalchemy.types.TypeEngine "sqlalchemy.types.TypeEngine"), is applied to the [Column.type]($e81afa1a43dcc92a.md#sqlalchemy.schema.Column.params.type "sqlalchemy.schema.Column") parameter
  38. >
  39. > - `nullable` - boolean flag if the column is NULL or NOT NULL, is applied to the [Column.nullable]($e81afa1a43dcc92a.md#sqlalchemy.schema.Column.params.nullable "sqlalchemy.schema.Column") parameter
  40. >
  41. > - `default` - the column’s server default value. This is normally specified as a plain string SQL expression, however the event can pass a [FetchedValue]($6bf23ed88b114c55.md#sqlalchemy.schema.FetchedValue "sqlalchemy.schema.FetchedValue"), [DefaultClause]($6bf23ed88b114c55.md#sqlalchemy.schema.DefaultClause "sqlalchemy.schema.DefaultClause"), or [text()]($aafca12b71ff5dd3.md#sqlalchemy.sql.expression.text "sqlalchemy.sql.expression.text") object as well. Is applied to the [Column.server\_default]($e81afa1a43dcc92a.md#sqlalchemy.schema.Column.params.server_default "sqlalchemy.schema.Column") parameter
  42. >
  43. The event is called before any action is taken against this dictionary, and the contents can be modified; the following additional keys may be added to the dictionary to further modify how the [Column]($e81afa1a43dcc92a.md#sqlalchemy.schema.Column "sqlalchemy.schema.Column") is constructed:
  44. > - `key` - the string key that will be used to access this [Column]($e81afa1a43dcc92a.md#sqlalchemy.schema.Column "sqlalchemy.schema.Column") in the `.c` collection; will be applied to the [Column.key]($e81afa1a43dcc92a.md#sqlalchemy.schema.Column.params.key "sqlalchemy.schema.Column") parameter. Is also used for ORM mapping. See the section [Automating Column Naming Schemes from Reflected Tables]($369339ad99131870.md#mapper-automated-reflection-schemes) for an example.
  45. >
  46. > - `quote` - force or un-force quoting on the column name; is applied to the [Column.quote]($e81afa1a43dcc92a.md#sqlalchemy.schema.Column.params.quote "sqlalchemy.schema.Column") parameter.
  47. >
  48. > - `info` - a dictionary of arbitrary data to follow along with the [Column]($e81afa1a43dcc92a.md#sqlalchemy.schema.Column "sqlalchemy.schema.Column"), is applied to the [Column.info]($e81afa1a43dcc92a.md#sqlalchemy.schema.Column.params.info "sqlalchemy.schema.Column") parameter.
  49. >
  50. [listen()]($3f6dba762b02614b.md#sqlalchemy.event.listen "sqlalchemy.event.listen") also accepts the `propagate=True` modifier for this event; when True, the listener function will be established for any copies made of the target object, i.e. those copies that are generated when [Table.to\_metadata()]($e81afa1a43dcc92a.md#sqlalchemy.schema.Table.to_metadata "sqlalchemy.schema.Table.to_metadata") is used.
  51. See also
  52. [Automating Column Naming Schemes from Reflected Tables]($369339ad99131870.md#mapper-automated-reflection-schemes) - in the ORM mapping documentation
  53. [Intercepting Column Definitions]($d479d79d9d1207f1.md#automap-intercepting-columns) - in the [Automap]($d479d79d9d1207f1.md) documentation
  54. [Reflecting with Database-Agnostic Types]($17d943c9e6549dba.md#metadata-reflection-dbagnostic-types) - in the [Reflecting Database Objects]($17d943c9e6549dba.md) documentation
  • attribute sqlalchemy.events.DDLEvents.dispatch: _Dispatch[_ET] = <sqlalchemy.event.base.DDLEventsDispatch object>

    reference back to the _Dispatch class.

    Bidirectional against _Dispatch._events

class sqlalchemy.events.SchemaEventTarget

Base class for elements that are the targets of DDLEvents events.

This includes SchemaItem as well as SchemaType.

Class signature

class sqlalchemy.events.SchemaEventTarget (sqlalchemy.event.registry.EventTarget)