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
*/
- Parameter
self
:CallableEnclosingStatementDO
- Return
int
pub fn getCallableOid(self: CallableEnclosingStatementDO) -> int;
CallableEnclosingStatementDO::__all__
Data constraint method.
- Parameter
db
:CfamilyDB
- Return
*CallableEnclosingStatementDO
pub fn __all__(db: CfamilyDB) -> *CallableEnclosingStatementDO;