将数据表保存到数据库

发布于 2024-09-10 19:25:16 字数 257 浏览 3 评论 0原文

嗨,我正在从网络服务生成一个数据表,我想将整个数据表保存到一个数据库表中。

DataTable ds = //get info from webservice

数据表正在生成,但下一步该做什么。我我陷入困境。向我展示一些语法。我也不需要那里的 select 语句,我只想将 DataTable 中的所有信息插入到空白数据库表中。

Hi, I am generating a DataTable from a webservice and i would like to save the whole DataTable into one database table.

DataTable ds = //get info from webservice

The DataTable is getting generated but What to do next .I am getting stuck .Show me some syntax.I dont really need the select statement there either, i just want to insert all the info from the DataTable into a blank db table.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

深爱成瘾 2024-09-17 19:25:19

使用批量复制,
这是代码。并确保表没有外键或主键约束。

  SqlBulkCopy bulkcopy = new SqlBulkCopy(myConnection);
 bulkcopy.DestinationTableName = table.TableName;
                            try
                            {
                                bulkcopy.WriteToServer(table);
                           }
    catch(Exception e){messagebox.show(e.message);}

Use bulkcopy,
this is the code. And make sure that the table has no foriegn key or primary key constraints.

  SqlBulkCopy bulkcopy = new SqlBulkCopy(myConnection);
 bulkcopy.DestinationTableName = table.TableName;
                            try
                            {
                                bulkcopy.WriteToServer(table);
                           }
    catch(Exception e){messagebox.show(e.message);}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文