Package uk.org.ogsadai.converters.resultset

Contains classes and interfaces for converting SQL result sets into different serialisations.

See:
          Description

Interface Summary
ColumnStrategy A column strategy is responsible for converting the data from a single column of a java.sql.ResultSet into string.
ColumnStrategyFactory The factory interface for creating column strategies.
ResultSetHandler The interface for handling the events that are generated when a result set is converted.
 

Class Summary
ResultSetConverter A class to convert the contents of java.sql.ResultSet objects into blocks of data.
StrategicResultSetHandler A ResultSet handler that uses strategy objects to handle the SQL column types occurring within a ResultSet.
 

Exception Summary
ResultSetHandlerColumnException Problem arising when trying to convert a java.sql.ResultSet column to another format.
ResultSetHandlerException Problem arising when trying to convert a java.sql.ResultSet to another format.
 

Package uk.org.ogsadai.converters.resultset Description

Contains classes and interfaces for converting SQL result sets into different serialisations. The core class is ResultSetConverter, which is responsible for processing the contents of java.sql.ResultSet objects and dispatching events through the ResultSetHandler interface. Different implementations of this event handler interface can be used to produce different serialisations, such as WebRowSet XML and CSV.