boolean |
DB.get(Connection connection,
SQLQuery query,
ActionParam<ListTerm> results) |
Action that executes a select query on the database.
|
boolean |
DB.update(Connection connection,
SQLQuery query) |
Action that executes an update query on the database.
|
boolean |
DB.where(SQLQuery query,
ListTerm fields,
ListTerm values) |
Action that allows you to add multiple where constrains in a single step.
|
boolean |
DB.where(SQLQuery query,
String field,
boolean value) |
Action to add a where constrain for a boolean value
|
boolean |
DB.where(SQLQuery query,
String field,
char value) |
Action to add a where constrain for a char value
|
boolean |
DB.where(SQLQuery query,
String field,
double value) |
Action to add a where constrain for a double value
|
boolean |
DB.where(SQLQuery query,
String field,
float value) |
Action to add a where constrain for a float value
|
boolean |
DB.where(SQLQuery query,
String field,
int value) |
Action to add a where constrain for an int value
|
boolean |
DB.where(SQLQuery query,
String field,
long value) |
Action to add a where constrain for a long value
|
boolean |
DB.where(SQLQuery query,
String field,
Object value) |
Action to add a where constrain for an object
|
boolean |
DB.where(SQLQuery query,
String field,
String value) |
Action to add a where constrain for a string value
|