Returns a real value for the named column in the specified result set callable statement object.
Syntax
getDouble( resultset , index )
resultset.getDouble( index )
getDouble( callablestatement , index )
callablestatement.getDouble( index )
Parameters
resultset
|
the result set object to use.
|
callablestatement
|
the callable statement object to use.
|
index
|
the index of the column.
|
Returns
double
|
the real number at the given column index.
|
Example
value = rs.getDouble( 1 )
|