MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / get_view_definition

Method get_view_definition

lib/sqlalchemy/engine/interfaces.py:1600–1617  ·  view source on GitHub ↗

Return plain or materialized view definition. This is an internal dialect method. Applications should use :meth:`_engine.Inspector.get_view_definition`. Given a :class:`_engine.Connection`, a string ``view_name``, and an optional string ``schema``, return the view

(
        self,
        connection: Connection,
        view_name: str,
        schema: Optional[str] = None,
        **kw: Any,
    )

Source from the content-addressed store, hash-verified

1598 raise NotImplementedError()
1599
1600 def get_view_definition(
1601 self,
1602 connection: Connection,
1603 view_name: str,
1604 schema: Optional[str] = None,
1605 **kw: Any,
1606 ) -> str:
1607 """Return plain or materialized view definition.
1608
1609 This is an internal dialect method. Applications should use
1610 :meth:`_engine.Inspector.get_view_definition`.
1611
1612 Given a :class:`_engine.Connection`, a string
1613 ``view_name``, and an optional string ``schema``, return the view
1614 definition.
1615 """
1616
1617 raise NotImplementedError()
1618
1619 def get_indexes(
1620 self,

Calls

no outgoing calls