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

Quick Search    Search Deep

safejdbc
Interface ResultSetProcessor  view ResultSetProcessor download ResultSetProcessor.java

All Known Implementing Classes:
ResultSetIterator

public interface ResultSetProcessor

ResultSetProcessors are used to specify how a ResultSet should be handled. An implementation of this interface must be provided if one of the query methods of SQLExecuter (or, more generally, an implementation of the SQL interface) is called. The query method first executes the SQL string and then passes the result to the ResultSetProcessor for processing.


Method Summary
 void process(java.sql.ResultSet rs)
           
 

Method Detail

process

public void process(java.sql.ResultSet rs)
             throws java.sql.SQLException