appendStringChunkParameter method

Appends the String to the new value for the specified SQLType.LONGVARCHAR.

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

  • value   The value to append to the current new value for the parameter.

Example

The following statement appends one hundred instances of the string XYZ to the first parameter:

for ( I = 0; I < 100; I++ ){
  stmt.appendStringChunkParameter( 1, "XYZ" );
}