Uses of Interface
org.dbunit.database.IResultSetTable
Packages that use IResultSetTable
-
Uses of IResultSetTable in org.dbunit.database
Classes in org.dbunit.database that implement IResultSetTableModifier and TypeClassDescriptionclassclassIResultSetTablethat eagerly loads and caches an entireResultSetin memory.classIResultSetTableimplementation backed by a forward-only, non-cachedResultSet.classIResultSetTableimplementation backed by a scrollableResultSetcursor.Methods in org.dbunit.database that return IResultSetTableModifier and TypeMethodDescriptionCachedResultSetTableFactory.createTable(String tableName, String selectStatement, IDatabaseConnection connection) CachedResultSetTableFactory.createTable(String tableName, PreparedStatement preparedStatement, IDatabaseConnection connection) CachedResultSetTableFactory.createTable(ITableMetaData metaData, IDatabaseConnection connection) ForwardOnlyResultSetTableFactory.createTable(String tableName, String selectStatement, IDatabaseConnection connection) ForwardOnlyResultSetTableFactory.createTable(String tableName, PreparedStatement preparedStatement, IDatabaseConnection connection) ForwardOnlyResultSetTableFactory.createTable(ITableMetaData metaData, IDatabaseConnection connection) IResultSetTableFactory.createTable(String tableName, String selectStatement, IDatabaseConnection connection) Creates a table from a table name and a SQL select statement.IResultSetTableFactory.createTable(String tableName, PreparedStatement preparedStatement, IDatabaseConnection connection) Creates a table from a preparedStatementIResultSetTableFactory.createTable(ITableMetaData metaData, IDatabaseConnection connection) Creates a table from a metadata descriptor and a connection.Constructors in org.dbunit.database with parameters of type IResultSetTableModifierConstructorDescriptionCreates a table that eagerly loads and caches all rows of the given table, then closes it.