Appends the String to the new value for the specified SQLType.LONGVARCHAR.
appendStringChunkParameter( UInt16 parameterID, String value, )
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.
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" ); } |
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |