com.ibatis.sqlmap.client.extensions |
|
Java Source File Name | Type | Comment |
ParameterSetter.java | Interface | Allows parameters to be set on the underlying prepared statement.
TypeHandlerCallback implementations use this interface to
process values before they are set on the prepared statement.
Each of these methods has a corresponding method on the
PreparedStatement class, the only difference being
that there is no need to specify the parameter index with these
methods.
NOTE: There is no need to implement this. |
ResultGetter.java | Interface | Allows values to be retrieved from the underlying result set.
TypeHandlerCallback implementations use this interface to
get values that they can subsequently manipulate before
having them returned. |
TypeHandlerCallback.java | Interface | A simple interface for implementing custom type handlers.
Using this interface, you can implement a type handler that
will perform customized processing before parameters are set
on a PreparedStatement and after values are retrieved from
a ResultSet. |