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 » PreparedStatement class

 AppendBytesParameter method Next Page

AppendStringChunkParameter method


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

Syntax

AppendStringChunkParameter(
UInt16 parameterID,
String value,
)

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