Interface IResultSetTable

All Superinterfaces:
ITable
All Known Implementing Classes:
AbstractResultSetTable, CachedResultSetTable, ForwardOnlyResultSetTable, ScrollableResultSetTable

public interface IResultSetTable extends ITable
An ITable backed by a JDBC result set that must be closed after use.
Since:
Apr 10, 2003
Version:
$Revision$
Author:
Manuel Laflamme
  • Field Summary

    Fields inherited from interface org.dbunit.dataset.ITable

    NO_VALUE
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Closes the underlying result set and releases its resources.

    Methods inherited from interface org.dbunit.dataset.ITable

    getRowCount, getTableMetaData, getValue
  • Method Details

    • close

      void close() throws DataSetException
      Closes the underlying result set and releases its resources.
      Throws:
      DataSetException - if closing the result set fails.