如何使用C#读取XML并创建sql表

如何使用C#读取XML并创建sql表

本文介绍了如何使用C#读取XML并创建sql表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们从第三方获取XML / XSD文件。

基于我们需要使用C#.NET在数据库中创建表的文件。

你能帮忙吗?这个。



谢谢

we get XML/XSD files from third party.
Based on the files we need to create tables in the database using C#.NET.
Could you help with this.

Thanks

推荐答案

DataTable table;

       private void createDatatableFromXML()
       {
           table = new DataTable();
           string dataFile = @"DatafileLocation\datafile.xml";
           if (File.Exists(dataFile))
           {
               table.ReadXml(dataFile);

           }
           else
           {
              //Do som messaging
               return;
           }
       }





如果你想从dataTable创建一个sql数据库,请看这个: []



希望这可以帮助你,



Groover



If You want to create a sql database from the dataTable see this:http://stackoverflow.com/questions/1348712/creating-a-sql-server-table-from-a-c-sharp-datatable[^]

Hope this can help You,

Groover


这篇关于如何使用C#读取XML并创建sql表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 22:20