ParamVariableDeclarationDO
/**
* @brief DO class: A param variable declaration.
*/
Primary key: oid: int
schema ParamVariableDeclarationDO {
@primary oid: int,
callable_oid: int,
type_oid: int,
printable_text: string
}
ParamVariableDeclarationDO::getPrintableText
/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
- Parameter
self
:ParamVariableDeclarationDO
- Return
string
pub fn getPrintableText(self: ParamVariableDeclarationDO) -> string;
ParamVariableDeclarationDO::getTypeOid
/**
* @brief gets the type oid of this element.
* @return int
*/
- Parameter
self
:ParamVariableDeclarationDO
- Return
int
pub fn getTypeOid(self: ParamVariableDeclarationDO) -> int;
ParamVariableDeclarationDO::__all__
Data constraint method.
- Parameter
db
:CfamilyDB
- Return
*ParamVariableDeclarationDO
pub fn __all__(db: CfamilyDB) -> *ParamVariableDeclarationDO;
ParamVariableDeclarationDO::getCallableOid
/**
* @brief gets the callable oid of this element.
* @return int
*/
- Parameter
self
:ParamVariableDeclarationDO
- Return
int
pub fn getCallableOid(self: ParamVariableDeclarationDO) -> int;