MergeDataRow

Merges the given DataRow and the current DataRow.

Syntax

int		 mergeDataRow(DataRow* dataRow, DataRow* other) 

Parameter

  • Datarow - the DataRow to which this function applies
  • Other DataRow to be merged with the current DataRow

Results

Returns 0 if successful or error code.

Example

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