public class UpdatableView extends TriggerAdapter
before, schemaName, tableName, triggerName, type| Constructor and Description |
|---|
UpdatableView() |
| Modifier and Type | Method and Description |
|---|---|
void |
fire(java.sql.Connection conn,
java.sql.ResultSet oldRow,
java.sql.ResultSet newRow)
This method is called for each triggered action by the default
fire(Connection conn, Object[] oldRow, Object[] newRow) method.
|
void |
init(java.sql.Connection conn,
java.lang.String schemaName,
java.lang.String triggerName,
java.lang.String tableName,
boolean before,
int type)
This method is called by the database engine once when initializing the
trigger.
|
static void |
main(java.lang.String... args)
This method is called when executing this sample application from the
command line.
|
close, fire, removepublic static void main(java.lang.String... args)
throws java.lang.Exception
args - the command line parametersjava.lang.Exceptionpublic void init(java.sql.Connection conn,
java.lang.String schemaName,
java.lang.String triggerName,
java.lang.String tableName,
boolean before,
int type)
throws java.sql.SQLException
TriggerAdapterinit in interface Triggerinit in class TriggerAdapterconn - a connection to the databaseschemaName - the name of the schematriggerName - the name of the trigger used in the CREATE TRIGGER
statementtableName - the name of the tablebefore - whether the fire method is called before or after the
operation is performedtype - the operation type: INSERT, UPDATE, DELETE, SELECT, or a
combination (this parameter is a bit field)java.sql.SQLExceptionpublic void fire(java.sql.Connection conn,
java.sql.ResultSet oldRow,
java.sql.ResultSet newRow)
throws java.sql.SQLException
TriggerAdapterFor "before" triggers, the new values of the new row may be changed using the ResultSet.updateX methods.
fire in class TriggerAdapterconn - a connection to the databaseoldRow - the old row, or null if no old row is available (for
INSERT)newRow - the new row, or null if no new row is available (for
DELETE)java.sql.SQLException - if the operation must be undone