Vous avez des améliorations (ou des corrections) à proposer pour ce document :
je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.
Return information about foreign_keys in all tables
in the given schema.
The tables can be filtered by passing the names to use to
``filter_names``.
For each table the value is a list of
:class:`.ReflectedForeignKeyConstraint`.
:param schema: string schema name; if omitted, uses the default schema
of the database connection. For special quoting,
use :class:`.quoted_name`.
:param filter_names: optionally return information only for the
objects listed here.
:param kind: a :class:`.ObjectKind` that specifies the type of objects
to reflect. Defaults to ``ObjectKind.TABLE``.
:param scope: a :class:`.ObjectScope` that specifies if foreign keys of
default, temporary or any tables should be reflected.
Defaults to ``ObjectScope.DEFAULT``.
:param \**kw: Additional keyword argument to pass to the dialect
specific implementation. See the documentation of the dialect
in use for more information.
:return: a dictionary where the keys are two-tuple schema,table-name
and the values are list of dictionaries, each representing
a foreign key definition.
The schema is ``None`` if no schema is provided.
.. versionadded:: 2.0
.. seealso:: :meth:`Inspector.get_foreign_keys`
Améliorations / Corrections
Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.
Emplacement :
Description des améliorations :