Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » UltraLite - M-Business Anywhere Programming » UltraLite for M-Business Anywhere API Reference » ULTable class

 AppendBytes method Next Page

AppendStringChunk method


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

Syntax

AppendStringChunk(
UInt16 columnID,
String value
)

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