public interface DatabaseListener
| Modifier and Type | Method and Description | 
|---|---|
| void | detached(FbDatabase database)Called when the  databaseconnection has been detached | 
| void | detaching(FbDatabase database)Called before the  databasewill be detached. | 
| void | warningReceived(FbDatabase database,
               java.sql.SQLWarning warning)Called when a warning was received for the  databaseconnection. | 
void detaching(FbDatabase database)
database will be detached.
 This event is intended for cleanup action, implementer should take care that no exceptions are thrown from this method.
database - The database object that is detachingvoid detached(FbDatabase database)
database connection has been detacheddatabase - The database object that was detachedvoid warningReceived(FbDatabase database, java.sql.SQLWarning warning)
database connection.
 
 In implementation it is possible that some warnings are not sent to listeners on the database, but only to
 listeners on
 specific connection derived objects (like an FbStatement implementation).
 
database - Database receiving the warningwarning - WarningCopyright © 2001-2022 Jaybird (Firebird JDBC/JCA) team. All rights reserved.