FullText.FullTextTrigger
Trigger updates the index when a inserting, updating, or deleting a row.
| Methods |
| static boolean |
isMultiThread(Connection conn)
Check whether the database is in multi-threaded mode.
|
| static boolean |
isMultiThread(Connection conn) throws SQLException
Check whether the database is in multi-threaded mode.
Parameters:
conn - the connection
Returns:
true if the multi-threaded mode is used
|
| void |
delete(Connection conn, Object[] row)
Delete a row from the index.
|
| void |
delete(Connection conn, Object[] row) throws SQLException
Delete a row from the index.
Parameters:
conn - to use
row - the row
|
| void |
insert(Connection conn, Object[] row)
Add a row to the index.
|
| void |
insert(Connection conn, Object[] row) throws SQLException
Add a row to the index.
Parameters:
conn - to use
row - the row
|
|