Appends the specified string to the new value for the specified SQLType.LONGVARCHAR column.
appendStringChunk( UInt16 columnID, String value )
columnID The ID number of the column. The first column in the table has an ID value of one.
value The new value for the column.
The following statements append one hundred instances of the string XYZ to the value in the first column:
for ( I = 0; I < 100; I++ ){ t.AppendStringChunk( 1, "XYZ" ); } |
Discuss this page in DocCommentXchange. Send feedback about this page using email. |
Copyright © 2009, iAnywhere Solutions, Inc. - SQL Anywhere 11.0.1 |