Name

RowSetReader

Synopsis

Interface Name: javax.sql.RowSetReader

Superclass: None

Immediate Subclasses: None

Interfaces Implemented: None

Availability: New as of JDK 1.2

Description

A class implementing the RowSetReader interface registers itself with a RowSet object that supports the reader/writer paradigm. A RowSet then calls the RowSetReader to produce a new set of rows that will become the contents of the RowSet.

Class Summary

public interface RowSetReader {
    void readData(RowSetInternal rsi) throws java.sql.SQLException;
}

Object Methods

readData( )

public void readData(RowSetInternal rsi)
  throws java.sql.SQLException;
Description

This method reads the new contents of a rowset. The execute( ) method in a rowset calls this method for rowsets that support the reader/writer paradigm.

Get Database Programming with JDBC & Java, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.