MergeDataRow

Combina la DataRow dada con la DataRow actual.

Sintaxis

int		 mergeDataRow(DataRow* dataRow, DataRow* other) 

Parámetro

  • Datarow: DataRow (Fila de datos) a la que se aplica esta función
  • Otra DataRow a combinar con la DataRow actual.

Resultados

Arroja 0 (en caso de éxito) o un código de error.

Ejemplo

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