MergeDataRow

指定された DataRow と現在の DataRow を結合します。

構文

int		 mergeDataRow(DataRow* dataRow, DataRow* other) 

パラメータ

  • DataRow - この関数で操作する DataRow。
  • 現在の DataRow と結合する他の DataRow。

結果

0 (正常終了) またはエラー コードを返します。

//Assume that the dataRow and otherDataRow are given here
int nRet;
nRet= mergeDataRow(dataRow, otherDataRow);