Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

javatools.db
Interface DbResult  view DbResult download DbResult.java

All Known Implementing Classes:
DbRowSet, DbTable

public interface DbResult

A class representing tabular data. Could be a real database table or the result of a SELECT.

Version:
0.2.0

Method Summary
 void close()
          Closes this table.
 DbIterator iterator()
          Return an iterator to iterate over the rows in this table.
 

Method Detail

iterator

public DbIterator iterator()
Return an iterator to iterate over the rows in this table.

BUGS: Currently you can only iterate over a table that was returned from a DbSelector.


close

public void close()
           throws DbException
Closes this table.