| java.lang.Object org.dbunit.dataset.AbstractDataSet org.dbunit.dataset.CompositeDataSet
CompositeDataSet | public class CompositeDataSet extends AbstractDataSet (Code) | | Combines multiple datasets into a single logical dataset.
author: Manuel Laflamme version: $Revision: 554 $ since: Feb 19, 2002 |
CompositeDataSet | public CompositeDataSet(IDataSet[] dataSets) throws DataSetException(Code) | | Creates a composite dataset that combines specified datasets.
Tables having the same name are merged into one table.
|
CompositeDataSet | public CompositeDataSet(IDataSet[] dataSets, boolean combine) throws DataSetException(Code) | | Creates a composite dataset that combines specified datasets.
Parameters: dataSets - list of datasets Parameters: combine - if true , tables having the same name are merged intoone table. |
CompositeDataSet | public CompositeDataSet(IDataSet dataSet1, IDataSet dataSet2) throws DataSetException(Code) | | Creates a composite dataset that combines the two specified datasets.
Tables having the same name are merged into one table.
|
CompositeDataSet | public CompositeDataSet(IDataSet dataSet1, IDataSet dataSet2, boolean combine) throws DataSetException(Code) | | Creates a composite dataset that combines the two specified datasets.
Parameters: dataSet1 - first dataset Parameters: dataSet2 - second dataset Parameters: combine - if true , tables having the same name are merged intoone table. |
CompositeDataSet | public CompositeDataSet(IDataSet dataSet, boolean combine) throws DataSetException(Code) | | Creates a composite dataset that combines duplicate tables of the specified dataset.
Parameters: dataSet - the dataset Parameters: combine - if true , tables having the same name are merged intoone table. |
CompositeDataSet | public CompositeDataSet(IDataSet dataSet) throws DataSetException(Code) | | Creates a composite dataset that combines duplicate tables of the specified dataset.
Parameters: dataSet - the dataset |
CompositeDataSet | public CompositeDataSet(ITable[] tables) throws DataSetException(Code) | | Creates a composite dataset that combines tables having identical name.
Tables having the same name are merged into one table.
|
|
|