H2Query
This class represents a prepared statement that returns a result set.
| Methods |
| void |
bindDouble(int index, double value)
Set the specified parameter value.
|
| void |
bindDouble(int index, double value)
Set the specified parameter value.
Parameters:
index - the parameter index (0, 1,...)
value - the new value
|
| void |
bindLong(int index, long value)
Set the specified parameter value.
|
| void |
bindLong(int index, long value)
Set the specified parameter value.
Parameters:
index - the parameter index (0, 1,...)
value - the new value
|
| void |
bindNull(int index)
Set the specified parameter to NULL.
|
| void |
bindNull(int index)
Set the specified parameter to NULL.
Parameters:
index - the parameter index (0, 1,...)
|
| void |
bindString(int index, String value)
Set the specified parameter value.
|
| void |
bindString(int index, String value)
Set the specified parameter value.
Parameters:
index - the parameter index (0, 1,...)
value - the new value
|
| void |
close()
Close the statement.
|
| void |
close()
Close the statement.
|
|