document
Instruction Xml Query. Création d'un élément dynamiquement.
Syntaxe
document {
ListeDExpressions }
Description
L'instruction document déclare un document dynamiquement par programmation dans un module Xml.
Exemple
Source 7724.xml
<?xml version="2.0"?>
element Employe
{
attribute Numero {7724},
element Nom {"Mister Scott"},
element Salaire {"1000.0"},
element DateDEmbauche {"2005-12-28 10:50:00"}
}
Source 7832.xml
<?xml version="2.0"?>
element Employe
{
attribute Numero {7832},
element Nom {"Mister Allen"},
element Salaire {"1200.0"},
element DateDEmbauche {"2002-01-26 11:09:10"}
}
Source 7948.xml
<?xml version="2.0"?>
element Employe
{
attribute Numero {7948},
element Nom {"Lady Smith"},
element Salaire {"1400.0"},
element DateDEmbauche {"2004-02-10 15:22:20"}
}
Source 7954.xml
<?xml version="2.0"?>
element Employe
{
attribute Numero {7954},
element Nom {"Miss King"},
element Salaire {"2000.0"},
element DateDEmbauche {"2003-04-01 08:12:20"}
}
Source employes.xml
<?xml version="2.0"?>
element ListeEmployes
{
attribute xmlns {"http://www.up-comp.com/application/employes"},
attribute xmlns:xschemaInstance {"http://www.w3.org/2001/XMLSchema-instance"},
attribute xmlns:xpath {"http://www.w3.org/2005/xpath-functions"},
attribute xschemaInstance:schemaLocation {"http://www.up-comp.com/application/employes http://www.up-comp.com/application/employes.xsd"},
document { "http://www.up-comp.com/application/employes/7724.xml" },
document { "http://www.up-comp.com/application/employes/7832.xml" },
document { "http://www.up-comp.com/application/employes/7948.xml" },
document { "http://www.up-comp.com/application/employes/7954.xml" }
}
Voir aussi
attribute pour créer un attribut dynamiquement.
comment pour créer un commentaire dynamiquement.
element pour créer un élément dynamiquement.
processing-instruction pour créer une instruction à direction de l'application dynamiquement.
text pour créer un texte dynamiquement.