public class DataSet extends Sql
def db = // an instance of groovy.sql.Sql def sql = '''select * from Person where (purchaseCount > ? and birthMonth = ?) and (lastName < ? or lastName > ?) and age < ? and age > ? and firstName != ? order by firstName DESC, age''' def params = [10, "January", "Zulu", "Alpha", 99, 5, "Bert"] def sortedPeopleOfInterest = db.rows(sql, params)You can write code like this:
def person = new DataSet(db, 'Person') // or db.dataSet('Person'), or db.dataSet(Person) def janFrequentBuyers = person.findAll { it.purchaseCount > 10 && it.lastName == "January" } def sortedPeopleOfInterest = janFrequentBuyers. findAll{ it.lastName < 'Zulu' || it.lastName > 'Alpha' }. findAll{ it.age < 99 }. findAll{ it.age > 5 }. sort{ it.firstName }.reverse(). findAll{ it.firstName != 'Bert' }. sort{ it.age }Currently, the Groovy source code for any accessed POGO must be on the classpath at runtime. Also, at the moment, the expressions (or nested expressions) can only contain references to fields of the POGO or literals (i.e. constant Strings or numbers). This limitation may be removed in a future version of Groovy.
Sql.AbstractQueryCommand
ALL_RESULT_SETS, ARRAY, BIGINT, BINARY, BIT, BLOB, BOOLEAN, CHAR, CLOB, DATALINK, DATE, DECIMAL, DISTINCT, DOUBLE, FIRST_RESULT_SET, FLOAT, INTEGER, JAVA_OBJECT, LOG, LONGVARBINARY, LONGVARCHAR, NO_RESULT_SETS, NULL, NUMERIC, OTHER, REAL, REF, SMALLINT, STRUCT, TIME, TIMESTAMP, TINYINT, VARBINARY, VARCHAR
Constructor and Description |
---|
DataSet(Sql sql,
java.lang.Class type) |
DataSet(Sql sql,
java.lang.String table) |
Modifier and Type | Method and Description |
---|---|
void |
add(java.util.Map<java.lang.String,java.lang.Object> map)
Adds the provided map of key-value pairs as a new row in the table represented by this DataSet.
|
void |
cacheConnection(Closure closure)
Caches the connection used while the closure is active.
|
void |
close()
If this SQL object was created with a Connection then this method closes
the connection.
|
protected void |
closeResources(java.sql.Connection connection,
java.sql.Statement statement)
An extension point allowing the behavior of resource closing to be
overridden in derived classes.
|
protected void |
closeResources(java.sql.Connection connection,
java.sql.Statement statement,
java.sql.ResultSet results)
An extension point allowing derived classes to change the behavior
of resource closing.
|
void |
commit()
If this SQL object was created with a Connection then this method commits
the connection.
|
protected java.sql.Connection |
createConnection()
An extension point allowing derived classes to change the behavior of
connection creation.
|
DataSet |
createView(Closure criteria) |
void |
each(Closure closure)
Calls the provided closure for each of the rows of the table represented by this DataSet.
|
void |
each(int offset,
int maxRows,
Closure closure)
Calls the provided closure for a "page" of rows from the table represented by this DataSet.
|
DataSet |
findAll(Closure where)
Return a lazy-implemented filtered view of this DataSet.
|
java.lang.Object |
firstRow()
Returns the first row from a DataSet's underlying table
|
java.util.List<java.lang.Object> |
getParameters() |
java.lang.String |
getSql() |
protected SqlOrderByVisitor |
getSqlOrderByVisitor() |
protected SqlWhereVisitor |
getSqlWhereVisitor() |
DataSet |
reverse()
Return a lazy-implemented reverse-ordered view of this DataSet.
|
void |
rollback()
If this SQL object was created with a Connection then this method rolls back
the connection.
|
java.util.List |
rows()
Returns a List of all of the rows from the table a DataSet
represents.
|
java.util.List |
rows(int offset,
int maxRows)
Returns a "page" of the rows from the table a DataSet represents.
|
DataSet |
sort(Closure sort)
Return a lazy-implemented re-ordered view of this DataSet.
|
int[] |
withBatch(Closure closure)
Performs the closure (containing batch operations) within a batch.
|
int[] |
withBatch(int batchSize,
Closure closure)
Performs the closure (containing batch operations) within a batch.
|
void |
withTransaction(Closure closure)
Performs the closure within a transaction using a cached connection.
|
ARRAY, asList, asList, asList, asSql, BIGINT, BINARY, BIT, BLOB, BOOLEAN, buildSqlWithIndexedProps, cacheStatements, call, call, call, call, call, call, callWithAllRows, callWithAllRows, callWithRows, callWithRows, callWithRows, CHAR, checkForNamedParams, CLOB, closeResources, configure, createPreparedQueryCommand, createQueryCommand, DATALINK, dataSet, dataSet, DATE, DECIMAL, DISTINCT, DOUBLE, eachRow, eachRow, eachRow, eachRow, eachRow, eachRow, eachRow, eachRow, eachRow, eachRow, eachRow, eachRow, eachRow, eachRow, eachRow, eachRow, eachRow, eachRow, eachRow, eachRow, execute, execute, execute, execute, execute, execute, execute, execute, execute, execute, executeInsert, executeInsert, executeInsert, executeInsert, executeInsert, executeInsert, executeInsert, executeInsert, executeInsert, executeInsert, executePreparedQuery, executeQuery, executeUpdate, executeUpdate, executeUpdate, executeUpdate, executeUpdate, expand, findWhereKeyword, firstRow, firstRow, firstRow, firstRow, firstRow, FLOAT, getConnection, getDataSource, getParameters, getResultSetConcurrency, getResultSetHoldability, getResultSetType, getUpdateCount, getUpdatedParams, in, inout, INTEGER, isCacheNamedQueries, isCacheStatements, isEnableMetaDataChecking, isEnableNamedQueries, isWithinBatch, JAVA_OBJECT, loadDriver, LONGVARBINARY, LONGVARCHAR, newInstance, newInstance, newInstance, newInstance, newInstance, newInstance, newInstance, NULL, nullify, NUMERIC, OTHER, out, preCheckForNamedParams, query, query, query, query, query, REAL, REF, resultSet, rows, rows, rows, rows, rows, rows, rows, rows, rows, rows, rows, rows, rows, rows, rows, rows, rows, rows, rows, rows, rows, setCacheNamedQueries, setCacheStatements, setEnableMetaDataChecking, setEnableNamedQueries, setInternalConnection, setObject, setParameters, setResultSetConcurrency, setResultSetHoldability, setResultSetType, SMALLINT, STRUCT, TIME, TIMESTAMP, TINYINT, VARBINARY, VARCHAR, withBatch, withBatch, withInstance, withInstance, withInstance, withInstance, withInstance, withInstance, withInstance, withStatement
public DataSet(Sql sql, java.lang.Class type)
public DataSet(Sql sql, java.lang.String table)
protected java.sql.Connection createConnection() throws java.sql.SQLException
Sql
createConnection
in class Sql
java.sql.SQLException
- if a SQL error occursprotected void closeResources(java.sql.Connection connection, java.sql.Statement statement, java.sql.ResultSet results)
Sql
closeResources
in class Sql
connection
- the connection to closestatement
- the statement to closeresults
- the results to closeprotected void closeResources(java.sql.Connection connection, java.sql.Statement statement)
Sql
closeResources
in class Sql
connection
- the connection to closestatement
- the statement to closepublic void cacheConnection(Closure closure) throws java.sql.SQLException
Sql
cacheConnection
in class Sql
closure
- the given closurejava.sql.SQLException
- if a database error occurspublic void withTransaction(Closure closure) throws java.sql.SQLException
Sql
withTransaction
in class Sql
closure
- the given closurejava.sql.SQLException
- if a database error occurspublic void commit() throws java.sql.SQLException
Sql
public void rollback() throws java.sql.SQLException
Sql
public int[] withBatch(Closure closure) throws java.sql.SQLException
withBatch
in class Sql
closure
- the closure containing batch and optionally other statementsjava.sql.SQLException
- if a database access error occurs,
or this method is called on a closed Statement
, or the
driver does not support batch statements. Throws BatchUpdateException
(a subclass of SQLException
) if one of the commands sent to the
database fails to execute properly or attempts to return a result set.Sql.withBatch(int, Closure)
public int[] withBatch(int batchSize, Closure closure) throws java.sql.SQLException
dataSet.withBatch(3) { add(anint: 1, astring: "Groovy") add(anint: 2, astring: "rocks") add(anint: 3, astring: "the") add(anint: 4, astring: "casbah") }
withBatch
in class Sql
batchSize
- partition the batch into batchSize pieces, i.e. after batchSize
addBatch()
invocations, call executeBatch()
automatically;
0 means manual calls to executeBatch are requiredclosure
- the closure containing batch and optionally other statementsjava.sql.SQLException
- if a database access error occurs, or the driver does not support batch statements.
Throws BatchUpdateException
(a subclass of SQLException
)
if one of the commands sent to the database fails to execute properly.Sql.withBatch(Closure)
,
BatchingStatementWrapper
,
Statement
public void add(java.util.Map<java.lang.String,java.lang.Object> map) throws java.sql.SQLException
map
- the key (column-name), value pairs to add as a new rowjava.sql.SQLException
- if a database error occurspublic DataSet findAll(Closure where)
where
- the filtering Closurepublic DataSet sort(Closure sort)
sort
- the ordering Closurepublic DataSet reverse()
public void each(Closure closure) throws java.sql.SQLException
closure
- called for each row with a GroovyResultSetjava.sql.SQLException
- if a database access error occursSql.eachRow(String, java.util.List, groovy.lang.Closure)
public void each(int offset, int maxRows, Closure closure) throws java.sql.SQLException
offset
- the 1-based offset for the first row to be processedmaxRows
- the maximum number of rows to be processedclosure
- called for each row with a GroovyResultSetjava.sql.SQLException
- if a database access error occursSql.eachRow(String, java.util.List, int, int, groovy.lang.Closure)
public java.lang.String getSql()
public java.util.List<java.lang.Object> getParameters()
protected SqlWhereVisitor getSqlWhereVisitor()
protected SqlOrderByVisitor getSqlOrderByVisitor()
public java.util.List rows() throws java.sql.SQLException
java.sql.SQLException
- if a database error occurspublic java.util.List rows(int offset, int maxRows) throws java.sql.SQLException
offset
- the 1-based offset for the first row to be processedmaxRows
- the maximum number of rows to be processedjava.sql.SQLException
- if a database error occurspublic java.lang.Object firstRow() throws java.sql.SQLException
java.sql.SQLException
- if a database error occurspublic void close()
Sql