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

SQL Anywhere 11.0.1 (中文) » UltraLite - M-Business Anywhere 编程 » UltraLite for M-Business Anywhere API 参考 » ResultSet 类

 

appendStringChunk 方法

将指定字符串添加到指定的 SQLType.LONGVARCHAR 列的新值中。

语法
appendStringChunk(
  UInt16 columnID, 
  String value 
)
参数
  • columnID   列的 ID 号。表中第一列的 ID 值为 1。

  • value   列的新值。

示例

以下语句将字符串 XYZ 的一百个实例添加到第一列的值中:

for ( I = 0; I < 100; I++ ){
  t.AppendStringChunk( 1, "XYZ" );
}