MergeDataRow

Fusionne le DataRow donné et le DataRow actuel.

Syntaxe

int		 mergeDataRow(DataRow* dataRow, DataRow* other) 

Paramètre

  • Datarow - le DataRow auquel cette fonction s'applique
  • Autre DataRow à fusionner avec le DataRow actuel

Résultats

Renvoie 0 en cas de succès ou un code d'erreur.

Exemple

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