CallableEnclosingStatementDO

/**
* @brief DO class: Record the corresponding relationship between a statement and its caller callable
*/

Primary key: statement_oid: int

schema CallableEnclosingStatementDO {
  @primary statement_oid: int,
  callable_oid: int
}

CallableEnclosingStatementDO::getCallableOid

/**
* @brief gets the callable oid of this element.
* @return int
*/
pub fn getCallableOid(self: CallableEnclosingStatementDO) -> int;

CallableEnclosingStatementDO::__all__

Data constraint method.

pub fn __all__(db: CfamilyDB) -> *CallableEnclosingStatementDO;