Uses of Class
org.apache.empire.db.DBRecordData

Packages that use DBRecordData
org.apache.empire.db This package contains the core Empire-DB implementation classes. 
 

Uses of DBRecordData in org.apache.empire.db
 

Subclasses of DBRecordData in org.apache.empire.db
 class DBReader
           This class is used to perform database queries from a DBCommand object and access the results.
 class DBRecord
          This class handles one record from a database table.
 

Methods in org.apache.empire.db that return DBRecordData
 DBRecordData DBReader.DBReaderScrollableIterator.next()
          Implements the Iterator Interface.
 DBRecordData DBReader.DBReaderForwardIterator.next()
          Implements the Iterator Interface.
 

Methods in org.apache.empire.db that return types with arguments of type DBRecordData
 java.util.Iterator<DBRecordData> DBReader.iterator()
           Returns an row iterator for this reader.
 java.util.Iterator<DBRecordData> DBReader.iterator(int maxCount)
          Returns an row iterator for this reader.
 

Methods in org.apache.empire.db with parameters of type DBRecordData
 boolean DBRowSet.initRecord(DBRecord rec, DBRecordData recData)
          Initializes a DBRecord for this rowset using the record data provided (i.e. from a DBReader)
The record may then be modified and updated.