setDateParameter method

Sets the value for the specified SQLType.DATE type parameter using a date.

Syntax
setDateParameter( UInt16 parameterID, Date 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.

Remarks

Only the year, month, and day fields of the Date object are relevant.

Example

The following statement sets a value for the first parameter to 2004/09/27:

stmt.setDateParameter( 
    1, new Date( 2004,9,27,0,0,0,0 )
);