J'ai un XML dont la structure est la suivante
est ce que c'est possible de le charger dans un DatagridView ??
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 <BDD Nom_BDD="ma base"> <Table Nom_Table="table1"> <Champ Nom_Champ="champ1"> <Type_Champ>int</Type_Champ> </Champ> <Champ Nom_Champ="champ3"> <Type_Champ>int</Type_Champ> </Champ> </Table> <Table Nom_Table="table2"> <Champ Nom_Champ="champ"> <Type_Champ>int</Type_Champ> </Champ> </Table> </BDD>
et si c'est possible, quelle la meilleure façon car j'ai bien cherché et j'ai pas trouver une bonne solution
NB: j'utilise le c# et le Xpath pour charger ma bdd
Partager