Fonction AS.AjouteOuModifieEntitéTable  [Web]

Description

Ajoute ou modifie une entité d'une table Azure

Syntaxe

AS.AjouteOuModifieEntitéTable(< Compte >, < Clé compte >, < Table >, < Partitionkey >, < Rowkey >, < Propriété 1 > : < Valeur > [, ..., < Propriété N > : < Valeur >])

  • < Compte > : Le nom du compte azure
  • < Clé compte > : La clé privée d'accès
  • < Table > : La table
  • < Partitionkey > : La partitionkey à ajouter / modifier
  • < Rowkey > : La rowkey à ajouter / modifier
  • < Propriété > : Nom de la propriété à ajouter / modifier
  • < Valeur > : La valeur

Exemple

AS.AjouteOuModifieEntitéTable("Compte""XXXX""matable""partitionkey1""rowkey1", propriété1 : "val1")

 

 

Fonction AS.AjouteOuModifieEntitéTable  [Web]

Description

Ajoute ou modifie une entité d'une table Azure

Syntaxe

AS.AjouteOuModifieEntitéTable(< Compte >, < Clé compte >, < Table >, < Partitionkey >, < Rowkey >, < Matrice Propriété / Valeur >)

  • < Compte > : Le nom du compte azure
  • < Clé compte > : La clé privée d'accès
  • < Table > : La table
  • < Partitionkey > : La partitionkey à ajouter / modifier
  • < Rowkey > : La rowkey à ajouter / modifier
  • < Propriété > : Nom de la propriété à ajouter / modifier
  • < Valeur> : La valeur

Exemple

AS.AjouteOuModifieEntitéTable( "Compte"

, "XXXX"

, "matable"

, "partitionkey1"

, "rowkey1"

, Tableau( Tableau( "propriété1", "val1" )

, Tableau( "propriété2", 2 )

)

)