ASP.net C# -- 将来自 MySQL 的数据集合并到 SQL Server 2008 表中

发布于 2024-10-14 23:23:31 字数 609 浏览 4 评论 0原文

我将数据从 MySQL 数据库表加载到 DataSet 中。

示例:

MySqlConnection myConnection = new MySqlConnection(/*connection string*/);
MySqlCommand collectDataCommand = new MySqlCommand(/*Select comman*/, myConnection);

MySqlDataAdapter myDataAdapter = new MySqlDataAdapter(collectDataCommand);
myConnection.Open();

DataSet tempData = new DataSet();
myDataAdapter.Fill(tempData);

既然我在 DataSet 中拥有此信息,我需要 MERGE(或 UPSERT)此信息到 DataSet 中的匹配表中SQL Server 2008 数据库。

做到这一点最有效的方法是什么?这可能吗?

非常感谢!

I load data from a MySQL database table into a DataSet.

Example:

MySqlConnection myConnection = new MySqlConnection(/*connection string*/);
MySqlCommand collectDataCommand = new MySqlCommand(/*Select comman*/, myConnection);

MySqlDataAdapter myDataAdapter = new MySqlDataAdapter(collectDataCommand);
myConnection.Open();

DataSet tempData = new DataSet();
myDataAdapter.Fill(tempData);

Now that I have this info in a DataSet, I need to MERGE (or UPSERT) this info into a matching table in a SQL Server 2008 database.

What would be the most efficient way of doing this? Is this even possible?

Many Thanks!!!

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

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

发布评论

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

评论(1

甩你一脸翔 2024-10-21 23:23:31

最有效的方法是使用表值参数 (TVP),受 SQL Server 2008 支持。

SQL Server 端 以及 C# 客户端(参数将为 SqlDbType.Structured)。基本上,步骤是:

  • 在数据库中定义一个新的“表类型”
  • 在存储过程中添加一个具有您刚刚定义的类型的参数
  • 在客户端 C# 代码中添加相应的参数

以下是相关 MSDN 文章的摘录:

“表值参数提供了一种将多行数据从客户端应用程序编组到 SQL Server 的简单方法,无需多次往返或特殊的服务器端逻辑来处理数据。您可以使用表值参数将数据行封装在其中。客户端应用程序并通过单个参数化命令将数据发送到服务器。传入的数据行存储在表变量中,然后可以使用 Transact-SQL 对其进行操作

“可以使用以下命令访问表值参数中的列值 。标准 Transact-SQL SELECT 语句。表值参数是强类型的,并且它们的结构会自动验证。表值参数的大小仅受服务器内存的限制。”

The most efficient way to do this is to use Table-Valued Parameters (TVP), supported by SQL Server 2008.

It is easy to implement both on the SQL Server side as well as the C# client side (the parameter will be of SqlDbType.Structured). Basically, the steps are:

  • Define a new "table type" in your database
  • Add a parameter in your stored procedure, having the type that you just defined
  • Add the corresponding parameter in your client C# code

Here's an extract from the relevant MSDN article:

"Table-valued parameters provide an easy way to marshal multiple rows of data from a client application to SQL Server without requiring multiple round trips or special server-side logic for processing the data. You can use table-valued parameters to encapsulate rows of data in a client application and send the data to the server in a single parameterized command. The incoming data rows are stored in a table variable that can then be operated on by using Transact-SQL.

"Column values in table-valued parameters can be accessed using standard Transact-SQL SELECT statements. Table-valued parameters are strongly typed and their structure is automatically validated. The size of table-valued parameters is limited only by server memory."

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文