Sets the specified parameter to the given real number in the specified prepared statement object.
Syntax
setDouble( preparedstatement , index , double )
preparedstatement.setDouble( index , double )
Parameters
preparedstatement
|
the statement object to use.
|
index
|
the index of the column to set.
|
double
|
the double value to use.
|
Returns
Example
pstmt.setDouble( 1, dbl )
|