public interface BindTarget
Statement.bind(int, java.lang.Object)
,
Statement.bindNull(int, java.lang.Class<?>)
Modifier and Type | Method and Description |
---|---|
void |
bind(int index,
Object value)
Bind a value to an index.
|
void |
bind(String identifier,
Object value)
Bind a value.
|
void |
bindNull(int index,
Class<?> type)
Bind a
null value. |
void |
bindNull(String identifier,
Class<?> type)
Bind a
null value. |
void bind(String identifier, Object value)
identifier
- the identifier to bind tovalue
- the value to bindvoid bind(int index, Object value)
index
- the index to bind tovalue
- the value to bindvoid bindNull(String identifier, Class<?> type)
null
value.identifier
- the identifier to bind totype
- the type of null
valuevoid bindNull(int index, Class<?> type)
null
value.index
- the index to bind totype
- the type of null
value