hello
how can import data from a xml file to insert them in my database by vb.net/asp.net??
thank you
Printable View
hello
how can import data from a xml file to insert them in my database by vb.net/asp.net??
thank you
do you want to import the entire file of just specific data?
all data in the file
does the file have the same structure as the table(s)
ie
file
in the databaseCode:<root>
<TableName1>
<Col1>data1</Col1>
<Col2>data2</Col2>
etc.
</TableName2>
<TableName1>
<Col1>data1</Col1>
<Col2>data2</Col2>
etc.
</TableName2>
</root>
Table1
Col1|Col2|etc.
Table2
Col1|Col2|etc.
ok
thank you
i try in this way
bye