setFloatParameter method

Sets the value for the specified SQLType.REAL parameter.

Syntax
setFloatParameter( UInt16 parameterID, Float value )
Parameters
  • parameterID   The ID number of the parameter. The first parameter in the result set has an ID value of one.

  • value   The new value for the parameter.

Example

The following statement sets a floating-point value for the first parameter:

stmt.setFloatParameter( 1,
    (2 - Math.pow(2,-23)) * Math.pow(2,127)
);