func X3.FR_JSON_RECUP_UN(Clbfile JSON_IN, Integer NUMERO_IN) : Clbfile

Renvoie l'entrée NUMERO_IN d'une collection.

  • JSON_IN Clob Collection Json dans laquelle récupérer l'entrée
  • NUMERO_IN Integer Numéro de l'entrée à récupérer (1 à X)
Retour Clbfile Clob Json numéro X de la collection
Exemple

# Ouverture du fichier json de description des dossiers de la solution courante
Local Clbfile JSON(8)
Openi filpath("","FOLDERS","json","X3_PUB") Using [FIC]
Iomode adxifs '' Using [FIC] : Iomode adxirs '' Using [FIC] : Iomode adxium 8 Using [FIC]
Rdseq [L]JSON Using [FIC] : Openi Using [FIC]
# Affiche le flux du premier dossier du fichier JsonCall AFFMES(func X3.FR_JSON_RECUP_UN(func X3.FR_JSON_RECUP_VALEUR([L]JSON, "folders"), 1)) From GESECRAN