public class H2Program extends H2Closable
| Modifier and Type | Field and Description |
|---|---|
protected Prepared |
prepared
The prepared statement
|
| Modifier and Type | Method and Description |
|---|---|
void |
bindBlob(int index,
byte[] value)
Set the specified parameter value.
|
void |
bindDouble(int index,
double value)
Set the specified parameter value.
|
void |
bindLong(int index,
long value)
Set the specified parameter value.
|
void |
bindNull(int index)
Set the specified parameter to NULL.
|
void |
bindString(int index,
java.lang.String value)
Set the specified parameter value.
|
void |
clearBindings()
Reset all parameter values.
|
void |
close()
Close the statement.
|
int |
getUniqueId()
Get the unique id of this statement.
|
protected void |
onAllReferencesReleased()
TODO
|
protected void |
onAllReferencesReleasedFromContainer()
TODO
|
acquireReference, releaseReference, releaseReferenceFromContainerprotected final Prepared prepared
public void bindBlob(int index,
byte[] value)
index - the parameter index (0, 1,...)value - the new valuepublic void bindDouble(int index,
double value)
index - the parameter index (0, 1,...)value - the new valuepublic void bindLong(int index,
long value)
index - the parameter index (0, 1,...)value - the new valuepublic void bindNull(int index)
index - the parameter index (0, 1,...)public void bindString(int index,
java.lang.String value)
index - the parameter index (0, 1,...)value - the new valuepublic void clearBindings()
public void close()
public final int getUniqueId()
protected void onAllReferencesReleased()
onAllReferencesReleased in class H2Closableprotected void onAllReferencesReleasedFromContainer()
onAllReferencesReleasedFromContainer in class H2Closable