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.
In oder to perform a query call the open() function or - for single row queries - call getRecordData();
You can iterate through the rows using moveNext() or an iterator.
 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
 Iterator<DBRecordData> DBReader.iterator()
           Returns an row iterator for this reader.
 Iterator<DBRecordData> DBReader.iterator(int maxCount)
          Returns an row iterator for this reader.
There can only be one iterator at a time.
 

Methods in org.apache.empire.db with parameters of type DBRecordData
 void DBRowSet.initRecord(DBRecord rec, DBRecordData recData)
          Initializes a DBRecord for this rowset using the record data provided (i.e.
 



Copyright © 2008-2012 Apache Software Foundation. All Rights Reserved.