1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Visitor and Traversal Utilities
================================
The :mod:`sqlalchemy.sql.visitors` module consists of classes and functions
that serve the purpose of generically **traversing** a Core SQL expression
structure. This is not unlike the Python ``ast`` module in that is presents
a system by which a program can operate upon each component of a SQL
expression. Common purposes this serves are locating various kinds of
elements such as :class:`_schema.Table` or :class:`.BindParameter` objects,
as well as altering the state of the structure such as replacing certain FROM
clauses with others.
.. note:: the :mod:`sqlalchemy.sql.visitors` module is an internal API and
is not fully public. It is subject to change and may additionally not
function as expected for use patterns that aren't considered within
SQLAlchemy's own internals.
The :mod:`sqlalchemy.sql.visitors` module is part of the **internals** of
SQLAlchemy and it is not usually used by calling application code. It is
however used in certain edge cases such as when constructing caching routines
as well as when building out custom SQL expressions using the
:ref:`Custom SQL Constructs and Compilation Extension <sqlalchemy.ext.compiler_toplevel>`.
.. automodule:: sqlalchemy.sql.visitors
:members:
:private-members:
|