Icon for Previous Page button Icon for Next Page button

appendStringChunk method

Appends the specified string to the new value for the specified SQLType.LONGVARCHAR column.

Syntax
appendStringChunk(
  UInt16 columnID, 
  String value 
)
Parameters
  • 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.

Example

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" );
}