Table 15.1. Parameters available in methods of DbEventInterceptor
Parameter | Description |
Connection con | a database connection => this object makes it easy to "trigger" other functionality like database-logging, keep up special data constraints, execute a sub-query, etc. |
DbFormsConfig config | a config object provides the method DbFormsConfig.getServletContext() which gives access to other J2EE-resources which may be stored in application scope. This could be an entry point to any other application, including EJB-Apps, Struts-Apps, Messaging systems, etc. |
HttpServletRequest request | an http-request object gives access to various types of information, including the current users name and users groups/roles. |
FieldValues fieldValues: | in the preInsert(), preUpdate() and preDelete()-methods: FieldValues which gives access to the fields contained in the current (selected) row.
-or- will return the field value of the field lastName of the row DbForm's is about to insert, to update or to delete. Note: To make changes in preInsert() and preUpdate() so that changes in the FieldValues are reflected in the database, use
will ensure that the value smith be stored in the lastname field in the database. (column lastname must exist!) |
DbEventInterceptorData data |
the
|