| Iterates over an SQL result set returning each row as an ArrayList of
objects. The returned array is shared at each iteration so calling next() or even hasNext()
changes the array contents. When the iterator terminates the resources
are cleaned up and the underlying SQL PreparedStatement is returned to
the SQLCache pool from whence it came.
Override the extractRow, getRow, and remove methods in subclasses
to return an object collection derived from the row contents instead
of the raw row contents.
author: Dave Reynolds version: $Revision: 1.5 $ on $Date: 2008/01/02 12:08:23 $ |