Je cherche à convertir un document XMl de type :
<service code="0003">
<Nom>Service 3</Nom>
<agent>
<nom>Dupont</nom>
<prenom>Dupond</prenom>
<matricule>0004</matricule>
</agent>
</service>
en requètes SQL du type :
INSERT INTO Services(code,nom) VALUES ('0003','Service 3'
INSERT INTO Agent (nom,prenom,matricule) VALUES ('Dupont','Dupond',0004'
J'essaie d'utiliser MyXMLLib mais j'ai vraiment du mal à comprendre comment elle marche afin de la modifier ... please help si vous avez une autre solution