|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||
public interface SqlValue
Simple interface for complex types to be set as statement parameters.
Implementations perform the actual work of setting the actual values. They must
implement the callback method setValue which can throw SQLExceptions
that will be caught and translated by the calling code. This callback method has
access to the underlying Connection via the given PreparedStatement object, if that
should be needed to create any database-specific objects.
| 方法摘要 | |
|---|---|
void |
cleanup()
Clean up resources held by this value object. |
void |
setValue(PreparedStatement ps,
int paramIndex)
Set the value on the given PreparedStatement. |
| 方法详细信息 |
|---|
void setValue(PreparedStatement ps,
int paramIndex)
throws SQLException
ps - the PreparedStatement to work onparamIndex - the index of the parameter for which we need to set the value
SQLException - if a SQLException is encountered while setting parameter valuesvoid cleanup()
|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||