Can xml form of data can be converted to other databases and vice versa???.
I m doin a project on conversion of databases to xml and xml to other databases using C# ... Help for that...
|
|
|||
xml to other database conversion
Can xml form of data can be converted to other databases and vice versa???.
I m doin a project on conversion of databases to xml and xml to other databases using C# ... Help for that... 1 Reply
You should be able to write a function to loop through your XML and insert each record into your database. Likewise you can take a dataset that you receive from your database and convert it to XML. I believe C# even has a method that will do this for you.
Another option if you are using a MS SQL database would be to create SSIS jobs to directly import your XML files into the database. |
|||
|