:: com :: sun :: star :: sdbc ::

interface XRowSet
Base Interfaces
XRowSetXResultSet

XResultSet
(referenced interface's summary:)

Methods' Summary
execute populates a row set with data. The description of the data source and other important information for filling the row set with data.  
addRowSetListener adds the specified listener to receive the events "cursorMoved", "rowChanged", and "rowSetChanged".  
removeRowSetListener removes the specified listener.  
Methods' Details
execute
void
execute()
raises( SQLException );

Description
populates a row set with data. The description of the data source and other important information for filling the row set with data.
Throws
SQLException if a database access error occurs.
addRowSetListener
void
addRowSetListener( [in] XRowSetListener  listener );

Description
adds the specified listener to receive the events "cursorMoved", "rowChanged", and "rowSetChanged".
Parameter listener
the listener which should be registered
removeRowSetListener
void
removeRowSetListener( [in] XRowSetListener  listener );

Description
removes the specified listener.
Parameter listener
the listener which should be registered
Top of Page