Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Operator_String = []string{
"Invalid Operator",
"Equals",
"Not Equals",
"Greater Than",
"Less Than",
"Greater Than Equals",
"Less Than Equals",
}
View Source
var Query_String = []string{
"Invalid Query",
"Select",
"Insert",
}
Functions ¶
This section is empty.
Types ¶
type Condition_t ¶
type Condition_t struct {
Operand1 string
IsOp1Field bool
Operator Operator_t
Operand2 string
IsOp2Field bool
}
type Operator_t ¶
type Operator_t uint8
Defines the type of Operator i.e Equals(=), Not Equals(!=), etc.
const ( INVALID_OPERATOR_TYPE Operator_t = iota EQUALS NOT_EQUALS GREATER_THAN LESS_THAN GREATER_THAN_EQUALS LESS_THAN_EQUALS )
Click to show internal directories.
Click to hide internal directories.