GetChildren

Récupère les rangées enfant d'une relation nommée.

Syntaxe

Version ASCII
DataRow** getChildren(DataRow* dataRow,const char* childName) 
Version Unicode
DataRow** getChildren(DataRow* dataRow,const UChar* childName) 

Paramètres

  • Le nom de la relation parent/enfant, par exemple, « Données de plaine inondable », « Références », « Utilisé par » et ainsi de suite.

Résultats

Renvoie les rangées enfant de la relation nommée.

Exemple

Version ASCII
DataRow** child1Rows; 
child1Rows =	getChildren(dataRow, "child1"); 
Version Unicode
DataRow** child1Rows; 
UChar childName[128]; 
/* see convertcharToUChar in the Example section of "addChild" */ 
child1Rows =	getChildren(dataRow, convertcharToUChar("child1", childName));