Package | Description |
---|---|
org.apache.empire.db |
This package contains the core Empire-DB implementation classes.
|
Modifier and Type | Class and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
DBRecordData |
DBReader.DBReaderScrollableIterator.next()
Implements the Iterator Interface.
|
DBRecordData |
DBReader.DBReaderForwardIterator.next()
Implements the Iterator Interface.
|
Modifier and Type | Method and Description |
---|---|
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. |
Modifier and Type | Method and Description |
---|---|
void |
DBRowSet.initRecord(DBRecord rec,
DBRecordData recData)
Initializes a DBRecord for this rowset using the record data provided (i.e.
|
Copyright © 2008–2015 Apache Software Foundation. All rights reserved.