BindTarget
instead.@Deprecated public interface BindTarget extends BindTarget
PreparedOperation
,
Statement.bind(int, java.lang.Object)
,
Statement.bindNull(int, java.lang.Class<?>)
Modifier and Type | Method and Description |
---|---|
void |
bind(int index,
Object value)
Deprecated.
Bind a value to an index.
|
void |
bind(String identifier,
Object value)
Deprecated.
Bind a value.
|
void |
bindNull(int index,
Class<?> type)
Deprecated.
Bind a null value.
|
void |
bindNull(String identifier,
Class<?> type)
Deprecated.
Bind a null value.
|
void bind(String identifier, Object value)
bind
in interface BindTarget
identifier
- the identifier to bind to.value
- the value to bind.void bind(int index, Object value)
bind
in interface BindTarget
index
- the index to bind to.value
- the value to bind.void bindNull(String identifier, Class<?> type)
bindNull
in interface BindTarget
identifier
- the identifier to bind to.type
- the type of null value.void bindNull(int index, Class<?> type)
bindNull
in interface BindTarget
index
- the index to bind to.type
- the type of null value.Copyright © 2018–2020 Pivotal Software, Inc.. All rights reserved.