IOTALiteral

Inherit from Literal

Primary key: oid: int

schema IOTALiteral extends Literal { @primary oid: int, expr: int, value: string, raw: string } 

IOTALiteral::getExpression

pub fn getExpression(self: IOTALiteral) -> Expr; 

IOTALiteral::getRaw

/** * @brief gets the raw of this element. * @return string */ 
pub fn getRaw(self: IOTALiteral) -> string; 

IOTALiteral::getExpr

/** * @brief gets the expr of this element. * @return int */ 
pub fn getExpr(self: IOTALiteral) -> int; 

IOTALiteral::__all__

Data constraint method.

pub fn __all__(db: GoDB) -> *IOTALiteral; 

IOTALiteral::getValue

/** * @brief gets the value of this element. * @return string */ 
pub fn getValue(self: IOTALiteral) -> string;