public interface 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)
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 to.value - the value to bind.void bind(int index,
Object value)
index - the index to bind to.value - the value to bind.void bindNull(String identifier, Class<?> type)
identifier - the identifier to bind to.type - the type of null value.void bindNull(int index,
Class<?> type)
index - the index to bind to.type - the type of null value.Copyright © 2018–2020 Pivotal Software, Inc.. All rights reserved.