August 2000
Intermediate to advanced
348 pages
8h 51m
English
RowSetListener
Interface Name:
javax.sql.RowSetListener
Superclass: java.util.EventListener
Immediate Subclasses: None
Interfaces Implemented: None
Availability: New as of JDK 1.2
Objects wanting to know when rowset events occur in a
RowSet instance implement this interface to be
notified of those events.
public interface RowSetListener extends java.util.EventListener {
void cursorMoved(RowSetEvent evt);
void rowChanged(RowSetEvent evt);
void rowSetChanged(RowSetEvent evt);
}public void cursorMoved(RowSetEvent evt);
This method is called whenever the cursor for the rowset being monitored by the implementor of this interface has moved.
public void rowChanged(RowSetEvent evt);
This method is called whenever a change has occurred to a row in the rowset being monitored by this object.
public void rowSetChanged(RowSetEvent evt);
This method is called whenever a change has occurred that affects the rowset as a whole.
Read now
Unlock full access