<html><meta http-equiv="Content-Type" content="text/html"/>
<head>
<meta name="title" content="AS.AjouteOuModifieEntitéTable" />
<meta name="description" content="Ajoute ou modifie une entité d'une table Azure" />
<link rel="stylesheet" type="text/css" href="../fonction.css" />
</head><body></body></html>

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", propriété1 : "val1")