public class UpdatableView extends TriggerAdapter
before, schemaName, tableName, triggerName, type
Constructor and Description |
---|
UpdatableView() |
Modifier and Type | Method and Description |
---|---|
void |
close()
This method is called when the database is closed.
|
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.
|
fire
public static void main(java.lang.String... args) throws java.lang.Exception
args
- ignoredjava.lang.Exception
- on failurepublic 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
TriggerAdapter
init
in interface Trigger
init
in class TriggerAdapter
conn
- 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.SQLException
- on SQL exceptionpublic void fire(java.sql.Connection conn, java.sql.ResultSet oldRow, java.sql.ResultSet newRow) throws java.sql.SQLException
TriggerAdapter
For "before" triggers, the new values of the new row may be changed using the ResultSet.updateX methods.
fire
in class TriggerAdapter
conn
- 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 undonepublic void close() throws java.sql.SQLException
Trigger
java.sql.SQLException
- on SQL exception