Uses of Class
uk.org.ogsadai.converters.resultset.ResultSetHandlerException

Packages that use ResultSetHandlerException
uk.org.ogsadai.converters.resultset Contains classes and interfaces for converting SQL result sets into different serialisations. 
uk.org.ogsadai.converters.resultset.csv   
uk.org.ogsadai.converters.resultset.webrowset This package contains implementations of the result set converter interfaces for converting java.sql.ResultSet objects into WebRowSet XML. 
 

Uses of ResultSetHandlerException in uk.org.ogsadai.converters.resultset
 

Methods in uk.org.ogsadai.converters.resultset that throw ResultSetHandlerException
 boolean ResultSetConverter.hasNext()
          Indicates whether or not there are any more blocks of data to be read.
 java.lang.String ResultSetConverter.next()
          Gets the next block of converted data.
private  void ResultSetConverter.processNextBlock()
          Generates the next block of data from the result set and saves a reference to it using mBlock.
private  void ResultSetConverter.processRow(java.lang.StringBuffer strbuf)
          Processes the current row of the result set, adding the converted data to the string buffer.
 void ResultSetHandler.header(java.lang.StringBuffer output, java.sql.ResultSet rs)
          Write any header data to the output stream.
 void ResultSetHandler.field(java.lang.StringBuffer output, java.sql.ResultSet resultSet, int column)
          Write the data contained in the specified field.
 void StrategicResultSetHandler.field(java.lang.StringBuffer output, java.sql.ResultSet resultSet, int column)
           
 

Constructors in uk.org.ogsadai.converters.resultset that throw ResultSetHandlerException
StrategicResultSetHandler(java.sql.ResultSet rs, ColumnStrategyFactory factory)
          Creates a new result set handler that will use strategies for handling the result set fields.
 

Uses of ResultSetHandlerException in uk.org.ogsadai.converters.resultset.csv
 

Methods in uk.org.ogsadai.converters.resultset.csv that throw ResultSetHandlerException
 void CSVResultSetHandler.header(java.lang.StringBuffer output, java.sql.ResultSet rs)
           
private  java.lang.String CSVResultSetHandler.metadata(java.sql.ResultSetMetaData metaData)
          Writes the CVS header (first line) with column names.
 

Constructors in uk.org.ogsadai.converters.resultset.csv that throw ResultSetHandlerException
CSVResultSetHandler(java.sql.ResultSet rs, CSVConfigurator configurator)
          Constructs a new handler.
 

Uses of ResultSetHandlerException in uk.org.ogsadai.converters.resultset.webrowset
 

Methods in uk.org.ogsadai.converters.resultset.webrowset that throw ResultSetHandlerException
 void WebRowSetResultSetHandler.header(java.lang.StringBuffer output, java.sql.ResultSet rs)
           
private  java.lang.String WebRowSetResultSetHandler.properties(java.sql.ResultSet rs)
          Writes the properties element of a WebRowSet document.
private  java.lang.String WebRowSetResultSetHandler.metadata(java.sql.ResultSetMetaData metaData)
          Writes the metadata element of a WebRowSet document.
 

Constructors in uk.org.ogsadai.converters.resultset.webrowset that throw ResultSetHandlerException
WebRowSetResultSetHandler(java.sql.ResultSet rs)
          Constructs a new handler.