How to export/import SQL Defs/Data

  • Thread starter Thread starter Donald Adams
  • Start date Start date
D

Donald Adams

Any plugable options out there that I can use to export database/table setup
and actual data to xml?
Best yet, would be a .Net class that I could use to control the process for
creating a setup file and then using my own install program to import the
defs/data.

Thanks in Advance,
Donald Adams
 
Hi donald,

Have a look at the most simple one

dataset.writexml (and dataset.readxml)

Although the documentation is on some places more difficult in this, is
this enough to write it.

dataset.writexml("yourfilepath")

I hope this helps?

Cor
 
Hi Cor,

Transfering the data is easy with dataset, but I was looking for an all in
one solution that also creates the database and table definitions. The
Dataset doesn't do that.

,,,Donald
 
Back
Top