ISelectClause Class
/private/var/user/Documents/App/Hybrid/JavaScript/Siminov/Database/Design/ISelectClause.js:54
Parent Module: Database
Exposes API's to provide condition on where clause to get tuples from table..
Item Index
Methods
between
-
start
-
end
Used to specify BETWEEN condition.
Returns:
ISelect Interface.
equalTo
-
value
Used to specify EQUAL TO (=) condition.
Parameters:
-
value
StringValue for which EQUAL TO (=) condition will be applied.
Returns:
ISelect Interface.
greaterThan
-
value
Used to specify GREATER THAN (>) condition.
Parameters:
-
value
StringValue for while GREATER THAN (>) condition will be specified.
Returns:
ISelect Interface.
greaterThanEqual
-
value
Used to specify GREATER THAN EQUAL (>=) condition.
Parameters:
-
value
StringValue for which GREATER THAN EQUAL (>=) condition will be specified.
Returns:
ISelect Interface.
in
-
values
Used to specify IN condition.
Parameters:
-
values
ArrayValues for IN condition.
Returns:
ISelect Interface.
lessThan
-
value
Used to specify LESS THAN (<) condition.
Parameters:
-
value
StringValue for which LESS THAN (<) condition will be specified.
Returns:
ISelect Interface.
lessThanEqual
-
value
Used to specify LESS THAN EQUAL (<=) condition.
Parameters:
-
value
StringValue for which LESS THAN EQUAL (<=) condition will be specified.
Returns:
ISelect Interface.