Package org.firebirdsql.jdbc
Class FBObjectListener.NoActionResultSetListener
- java.lang.Object
- 
- org.firebirdsql.jdbc.FBObjectListener.NoActionResultSetListener
 
- 
- All Implemented Interfaces:
- FBObjectListener.ResultSetListener
 - Enclosing interface:
- FBObjectListener
 
 public static final class FBObjectListener.NoActionResultSetListener extends java.lang.Object implements FBObjectListener.ResultSetListener Implementation ofFBObjectListener.ResultSetListenerthat implements all methods as empty methods.
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete 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.static FBObjectListener.ResultSetListenerinstance()voidresultSetClosed(java.sql.ResultSet rs)Notify listener that result set was closed.
 
- 
- 
- 
Method Detail- 
instancepublic static FBObjectListener.ResultSetListener instance() 
 - 
resultSetClosedpublic void resultSetClosed(java.sql.ResultSet rs) throws java.sql.SQLExceptionDescription copied from interface:FBObjectListener.ResultSetListenerNotify listener that result set was closed.- Specified by:
- resultSetClosedin interface- FBObjectListener.ResultSetListener
- Parameters:
- rs- result set that was closed.
- Throws:
- java.sql.SQLException
 
 - 
allRowsFetchedpublic void allRowsFetched(java.sql.ResultSet rs) throws java.sql.SQLExceptionDescription copied from interface:FBObjectListener.ResultSetListenerNotify listener that all rows were fetched. This event is used in auto-commit case to tell the statement that it is completed.- Specified by:
- allRowsFetchedin interface- FBObjectListener.ResultSetListener
- Parameters:
- rs- result set that was completed.
- Throws:
- java.sql.SQLException
 
 - 
executionStartedpublic void executionStarted(org.firebirdsql.jdbc.FirebirdRowUpdater updater) throws java.sql.SQLExceptionDescription copied from interface:FBObjectListener.ResultSetListenerNotify listener that execution of some row updating operation started.- Specified by:
- executionStartedin interface- FBObjectListener.ResultSetListener
- Parameters:
- updater- instance of- FirebirdRowUpdater
- Throws:
- java.sql.SQLException- if somewthing went wrong.
 
 - 
executionCompletedpublic void executionCompleted(org.firebirdsql.jdbc.FirebirdRowUpdater updater, boolean success) throws java.sql.SQLExceptionDescription copied from interface:FBObjectListener.ResultSetListenerNotify listener that execution of some row updating operation is completed.- Specified by:
- executionCompletedin interface- FBObjectListener.ResultSetListener
- Parameters:
- updater- instance of- FirebirdRowUpdater.
- Throws:
- java.sql.SQLException- if something went wrong.
 
 
- 
 
-