ScopeEnclosingStatementDO

/**
* @brief DO class: A scope enclosing statement.
*/

Primary key: statement_oid: int

schema ScopeEnclosingStatementDO {
  @primary statement_oid: int,
  scope_oid: int
}

ScopeEnclosingStatementDO::getScopeOid

/**
* @brief gets the scope oid of this element.
* @return int
*/
pub fn getScopeOid(self: ScopeEnclosingStatementDO) -> int;

ScopeEnclosingStatementDO::__all__

Data constraint method.

pub fn __all__(db: PythonDB) -> *ScopeEnclosingStatementDO;