public interface BindMarker
placeholder
that is used in the actual query.Statement.bind(int, java.lang.Object)
,
BindMarkers
,
BindMarkersFactory
Modifier and Type | Method and Description |
---|---|
void |
bind(BindTarget bindTarget,
Object value)
Bind the given
value to the Statement using the underlying binding strategy. |
void |
bindNull(BindTarget bindTarget,
Class<?> valueType)
Bind a
null value to the Statement using the underlying binding strategy. |
String |
getPlaceholder()
Return the database-specific placeholder for a given substitution.
|
String getPlaceholder()
void bind(BindTarget bindTarget, Object value)
value
to the Statement
using the underlying binding strategy.bindTarget
- the target to bind the value tovalue
- the actual value (must not be null
;
use bindNull(BindTarget, Class)
for null
values)Statement.bind(int, java.lang.Object)
void bindNull(BindTarget bindTarget, Class<?> valueType)
null
value to the Statement
using the underlying binding strategy.bindTarget
- the target to bind the value tovalueType
- the value type (must not be null
)Statement.bindNull(int, java.lang.Class<?>)