| Constructor and Description |
|---|
FullTextTrigger() |
| Modifier and Type | Method and Description |
|---|---|
void |
close()
INTERNAL
|
protected void |
delete(java.sql.Connection conn,
java.lang.Object[] row)
Delete a row from the index.
|
void |
fire(java.sql.Connection conn,
java.lang.Object[] oldRow,
java.lang.Object[] newRow)
INTERNAL
|
void |
init(java.sql.Connection conn,
java.lang.String schemaName,
java.lang.String triggerName,
java.lang.String tableName,
boolean before,
int type)
INTERNAL
|
protected void |
insert(java.sql.Connection conn,
java.lang.Object[] row)
Add a row to the index.
|
void |
remove()
INTERNAL
|
public 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
init in interface Triggerconn - a connection to the database (a system connection)schemaName - 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.lang.Object[] oldRow,
java.lang.Object[] newRow)
throws java.sql.SQLException
protected void insert(java.sql.Connection conn,
java.lang.Object[] row)
throws java.sql.SQLException
conn - to userow - the rowjava.sql.SQLExceptionprotected void delete(java.sql.Connection conn,
java.lang.Object[] row)
throws java.sql.SQLException
conn - to userow - the rowjava.sql.SQLException