Variables

Inherit from Literal

Primary key: oid: int

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

Variables::getExpression

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

Variables::getExpr

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

Variables::getRaw

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

Variables::getBelongsFunction

pub fn getBelongsFunction(self: Variables) -> Function;

Variables::__all__

Data constraint method.

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

Variables::getName

pub fn getName(self: Variables) -> string;

Variables::getSignature

pub fn getSignature(self: Variables) -> *string;

Variables::getValue

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