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

SQL Anywhere 11.0.1 (日本語) » Ultra Light - M-Business Anywhere プログラミング » Ultra Light for M-Business Anywhere API リファレンス » ULTable クラス

 

appendStringChunk メソッド

指定された文字列を指定された SQLType.LONGVARCHAR カラムの新しい値に追加します。

構文
appendStringChunk(
  UInt16 columnID, 
  String value 
)
パラメータ
  • columnID   カラムの ID 番号。テーブルの最初のカラムの ID 値は 1 です。

  • value   カラムの新しい値。

次の文は、文字列 XYZ のインスタンス 100 個を最初のカラムの値に追加します。

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