org.dbunit.dataset
Class LowerCaseDataSet
java.lang.Object
org.dbunit.dataset.AbstractDataSet
org.dbunit.dataset.LowerCaseDataSet
- All Implemented Interfaces:
- IDataSet
- public class LowerCaseDataSet
- extends AbstractDataSet
Specialized IDataSet decorator that convert the table name and
column names to lower case. Used in DbUnit own test suite to verify that
operations are case insensitive.
- Since:
- Feb 14, 2003
- Version:
- $Revision: 1.3 $
- Author:
- Manuel Laflamme
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
LowerCaseDataSet
public LowerCaseDataSet(ITable table)
throws DataSetException
LowerCaseDataSet
public LowerCaseDataSet(ITable[] tables)
throws DataSetException
LowerCaseDataSet
public LowerCaseDataSet(IDataSet dataSet)
throws DataSetException
createIterator
protected ITableIterator createIterator(boolean reversed)
throws DataSetException
- Specified by:
createIterator in class AbstractDataSet
- Throws:
DataSetException
getTableNames
public java.lang.String[] getTableNames()
throws DataSetException
- Description copied from interface:
IDataSet
- Returns names of tables in this dataset in proper sequence. Multiple
occurence of the same name may be returned if multiple tables having
the same name are present in the dataset.
- Specified by:
getTableNames in interface IDataSet- Overrides:
getTableNames in class AbstractDataSet
- Throws:
DataSetException
getTableMetaData
public ITableMetaData getTableMetaData(java.lang.String tableName)
throws DataSetException
- Description copied from interface:
IDataSet
- Returns the specified table metadata.
- Specified by:
getTableMetaData in interface IDataSet- Overrides:
getTableMetaData in class AbstractDataSet
- Throws:
DataSetException
getTable
public ITable getTable(java.lang.String tableName)
throws DataSetException
- Description copied from interface:
IDataSet
- Returns the specified table.
- Specified by:
getTable in interface IDataSet- Overrides:
getTable in class AbstractDataSet
- Throws:
DataSetException
Copyright © 2002-2004 DbUnit.org. All Rights Reserved.