Package org.firebirdsql.jdbc
Interface FBObjectListener.ResultSetListener
- 
- All Known Implementing Classes:
- FBObjectListener.NoActionResultSetListener
 - Enclosing interface:
- FBObjectListener
 
 public static interface FBObjectListener.ResultSetListenerListener for the events generated by the result set.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidallRowsFetched(java.sql.ResultSet rs)Notify listener that all rows were fetched.voidexecutionCompleted(org.firebirdsql.jdbc.FirebirdRowUpdater updater, boolean success)Notify listener that execution of some row updating operation is completed.voidexecutionStarted(org.firebirdsql.jdbc.FirebirdRowUpdater updater)Notify listener that execution of some row updating operation started.voidresultSetClosed(java.sql.ResultSet rs)Notify listener that result set was closed.
 
- 
- 
- 
Method Detail- 
resultSetClosedvoid resultSetClosed(java.sql.ResultSet rs) throws java.sql.SQLExceptionNotify listener that result set was closed.- Parameters:
- rs- result set that was closed.
- Throws:
- java.sql.SQLException
 
 - 
allRowsFetchedvoid allRowsFetched(java.sql.ResultSet rs) throws java.sql.SQLExceptionNotify listener that all rows were fetched. This event is used in auto-commit case to tell the statement that it is completed.- Parameters:
- rs- result set that was completed.
- Throws:
- java.sql.SQLException
 
 - 
executionStartedvoid executionStarted(org.firebirdsql.jdbc.FirebirdRowUpdater updater) throws java.sql.SQLExceptionNotify listener that execution of some row updating operation started.- Parameters:
- updater- instance of- FirebirdRowUpdater
- Throws:
- java.sql.SQLException- if somewthing went wrong.
 
 - 
executionCompletedvoid executionCompleted(org.firebirdsql.jdbc.FirebirdRowUpdater updater, boolean success) throws java.sql.SQLExceptionNotify listener that execution of some row updating operation is completed.- Parameters:
- updater- instance of- FirebirdRowUpdater.
- Throws:
- java.sql.SQLException- if something went wrong.
 
 
- 
 
-