Modifier and Type | Class and Description |
---|---|
class |
DeletionTransformer
A
Session.ResultSetReader that writes the read rows as SQL-DELETE-statements
into the deletion-script. |
class |
DMLTransformer
A
Session.ResultSetReader that writes the read rows as DML-statements
into the export-script. |
class |
InlineViewBuilder
Reads
ResultSet s and builds inline-views according to the content. |
static class |
Session.AbstractResultSetReader
Reads a JDBC-result-set.
|
class |
UpdateTransformer
A
Session.ResultSetReader that writes the read rows as UPDATE statements
into the export-script. |
Modifier and Type | Method and Description |
---|---|
Session.ResultSetReader |
DMLTransformer.Factory.create(Table table)
Creates transformer (as
Session.ResultSetReader which
transforms rows of a given table into an external representation. |
Session.ResultSetReader |
DeletionTransformer.Factory.create(Table table)
Creates transformer (as
Session.ResultSetReader which
transforms rows of a given table into an external representation. |
Modifier and Type | Method and Description |
---|---|
void |
Session.executeQuery(java.io.File sqlFile,
Session.ResultSetReader reader,
boolean withExplicitCommit)
Executes a SQL-Query (SELECT).
|
long |
Session.executeQuery(java.lang.String sqlQuery,
Session.ResultSetReader reader)
Executes a SQL-Query (SELECT).
|
long |
Session.executeQuery(java.lang.String sqlQuery,
Session.ResultSetReader reader,
boolean withExplicitCommit)
Executes a SQL-Query (SELECT).
|
long |
Session.executeQuery(java.lang.String sqlQuery,
Session.ResultSetReader reader,
java.lang.String alternativeSQL,
java.lang.Object context,
long limit)
Executes a SQL-Query (SELECT).
|
long |
Session.executeQuery(java.lang.String sqlQuery,
Session.ResultSetReader reader,
java.lang.String alternativeSQL,
java.lang.Object context,
long limit,
boolean withExplicitCommit)
Executes a SQL-Query (SELECT).
|
long |
Session.executeQuery(java.lang.String sqlQuery,
Session.ResultSetReader reader,
java.lang.String alternativeSQL,
java.lang.Object context,
long limit,
int timeout,
boolean withExplicitCommit)
Executes a SQL-Query (SELECT) with timeout.
|
Modifier and Type | Class and Description |
---|---|
class |
FlatXMLTransformer
Reads a JDBC result set and writes the read rows into a
DbUnit flat XML dataset document.
|
Modifier and Type | Method and Description |
---|---|
Session.ResultSetReader |
FlatXMLTransformer.Factory.create(Table table)
Creates transformer (as
Session.ResultSetReader which
transforms rows of a given table into an external representation. |
Modifier and Type | Method and Description |
---|---|
abstract void |
EntityGraph.readDependentEntities(Table table,
Association association,
java.sql.ResultSet resultSet,
java.sql.ResultSetMetaData resultSetMetaData,
Session.ResultSetReader reader,
java.util.Map<java.lang.String,java.lang.Integer> typeCache,
java.lang.String selectionSchema,
java.lang.String originalPKAliasPrefix)
Reads all entities which depends on given entity.
|
abstract void |
EntityGraph.readMarkedEntities(Table table,
Session.ResultSetReader reader,
java.lang.String selectionSchema,
java.lang.String originalPKAliasPrefix,
boolean orderByPK)
Reads all entities of a given table which are marked as independent or as roots.
|
abstract void |
EntityGraph.readNonTraversedDependencies(Table table,
Session.ResultSetReader reader)
Reads all non-traversed dependencies.
|
abstract long |
EntityGraph.readUnfilteredEntityColumns(Table table,
java.util.List<Column> columns,
Session.ResultSetReader reader)
Reads some columns of all entities of a given table without using filters.
|
Modifier and Type | Method and Description |
---|---|
void |
LocalEntityGraph.readDependentEntities(Table table,
Association association,
java.sql.ResultSet resultSet,
java.sql.ResultSetMetaData resultSetMetaData,
Session.ResultSetReader reader,
java.util.Map<java.lang.String,java.lang.Integer> theTypeCache,
java.lang.String selectionSchema,
java.lang.String originalPKAliasPrefix)
Reads all entities which depends on given entity.
|
void |
LocalEntityGraph.readMarkedEntities(Table table,
Session.ResultSetReader reader,
java.lang.String selectionSchema,
java.lang.String originalPKAliasPrefix,
boolean orderByPK)
Reads all entities of a given table which are marked as independent or as roots.
|
void |
LocalEntityGraph.readNonTraversedDependencies(Table table,
Session.ResultSetReader reader)
Reads all non-traversed dependencies.
|
long |
LocalEntityGraph.readUnfilteredEntityColumns(Table table,
java.util.List<Column> columns,
Session.ResultSetReader reader)
Reads some columns of all entities of a given table without using filters.
|
Modifier and Type | Method and Description |
---|---|
void |
RemoteEntityGraph.readDependentEntities(Table table,
Association association,
java.sql.ResultSet resultSet,
java.sql.ResultSetMetaData resultSetMetaData,
Session.ResultSetReader reader,
java.util.Map<java.lang.String,java.lang.Integer> typeCache,
java.lang.String selectionSchema,
java.lang.String originalPKAliasPrefix)
Reads all entities which depends on given entity.
|
protected long |
RemoteEntityGraph.readEntities(Table table,
boolean orderByPK,
Session.ResultSetReader reader)
Reads all entities of a given table.
|
void |
RemoteEntityGraph.readMarkedEntities(Table table,
Session.ResultSetReader reader,
java.lang.String selectionSchema,
java.lang.String originalPKAliasPrefix,
boolean orderByPK)
Reads all entities of a given table which are marked as independent or as roots.
|
void |
RemoteEntityGraph.readNonTraversedDependencies(Table table,
Session.ResultSetReader reader)
Reads all non-traversed dependencies.
|
long |
RemoteEntityGraph.readUnfilteredEntityColumns(Table table,
java.util.List<Column> columns,
Session.ResultSetReader reader)
Reads some columns of all entities of a given table without using filters.
|
Modifier and Type | Class and Description |
---|---|
class |
LiquibaseXMLTransformer |
Modifier and Type | Method and Description |
---|---|
Session.ResultSetReader |
LiquibaseXMLTransformer.Factory.create(Table table)
Creates transformer (as
Session.ResultSetReader which
transforms rows of a given table into an external representation. |
Modifier and Type | Method and Description |
---|---|
Session.ResultSetReader |
TransformerFactory.create(Table table)
Creates transformer (as
Session.ResultSetReader which
transforms rows of a given table into an external representation. |
Modifier and Type | Class and Description |
---|---|
class |
XmlExportTransformer
A
Session.ResultSetReader that writes the read rows into an XML file. |