|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||
public interface SqlParameterSource
Interface that defines common functionality for objects that can
offer parameter values for named SQL parameters, serving as argument
for JdbcTemplate operations.
This interface allows for the specification of SQL type in addition to parameter values. All parameter values and types are identified by specifying the name of the parameter.
Intended to wrap various implementations like a Map or a JavaBean with a consistent interface.
JdbcTemplate| 字段摘要 | |
|---|---|
static int |
TYPE_UNKNOWN
Constant that indicates an unknown (or unspecified) SQL type. |
| 方法摘要 | |
|---|---|
int |
getSqlType(String paramName)
Determine the SQL type for the specified named parameter. |
String |
getTypeName(String paramName)
Determine the type name for the specified named parameter. |
Object |
getValue(String paramName)
Return the parameter value for the requested named parameter. |
boolean |
hasValue(String paramName)
Determine whether there is a value for the specified named parameter. |
| 字段详细信息 |
|---|
static final int TYPE_UNKNOWN
getType when no specific SQL type known.
getSqlType(java.lang.String),
Types,
常量字段值| 方法详细信息 |
|---|
boolean hasValue(String paramName)
paramName - the name of the parameter
Object getValue(String paramName)
throws IllegalArgumentException
paramName - the name of the parameter
IllegalArgumentException - if there is no value for the requested parameterint getSqlType(String paramName)
paramName - the name of the parameter
TYPE_UNKNOWN if not knownTYPE_UNKNOWNString getTypeName(String paramName)
paramName - the name of the parameter
null if not known
|
||||||||||
| 上一个类 下一个类 | 框架 无框架 | |||||||||
| 摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 | |||||||||