BindMarker
instead.@Deprecated public interface BindMarker extends 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)
Deprecated.
Bind the given
value to the Statement using the underlying binding strategy. |
void |
bindNull(BindTarget bindTarget,
Class<?> valueType)
Deprecated.
Bind a null value to the
Statement using the underlying binding strategy. |
String |
getPlaceholder()
Deprecated.
Returns the database-specific placeholder for a given substitution.
|
bind, bindNull
String getPlaceholder()
getPlaceholder
in interface BindMarker
void bind(BindTarget bindTarget, Object value)
value
to the Statement
using the underlying binding strategy.bindTarget
- the target to bind the value to.value
- 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)
Statement
using the underlying binding strategy.bindTarget
- the target to bind the value to.valueType
- value type, must not be null.Statement.bindNull(int, java.lang.Class<?>)
Copyright © 2018–2022 Pivotal Software, Inc.. All rights reserved.