public class Query
extends java.lang.Object
The end result of a Query object will produce a SQL statement that represents the
target query and can be directly executed against the database.
Query object provides fou primary types of queries, Select, Update,
Insert and Delete, that can be used to interacting or building queries.
For complex queries such as sub-SELECT queries, instantiate a Query
object with the specific raw SQL statement.
| Modifier and Type | Field and Description |
|---|---|
protected java.lang.String |
rawSQL |
| Modifier | Constructor and Description |
|---|---|
protected |
Query() |
|
Query(java.lang.String rawSQL,
java.util.List<java.lang.Object> parameters) |
|
Query(java.lang.String rawSQL,
java.lang.Object... parameters) |