3

select * from将 Excel 电子表格放入DataTable dt. 我想获取这些值并更新 SQL 表。SQL 表的存在是因为从原始 Excel 电子表格手动导入 SQL,具有主键集。用户更新了 excel 表,我需要更新 SQL 值。我正在将 设置dt.RowState为修改以调用更新。我没有收到错误,但 SQL 表没有更新。之前的测试显示我的SQL权限和连接都很好,可以修改表。

connectionToSQL = new SqlConnection(SQLConnString);
connectionToSQL.Open();
var cmd = new SqlCommand("SELECT * FROM TAGS$",connectionToSQL);                 
var da = new SqlDataAdapter(cmd);
var b = new SqlCommandBuilder(da);
foreach (DataRow r in dt.Rows)
{
    r.SetModified();
}
da.Update(dt);   
4

3 回答 3

9

尝试这个:

using System.Data;
using System.Data.SqlClient;
using System;
namespace Q308507 {
    class Class1 
    {
        static void Main(string[] args) 
        {
            SqlConnection cn = new SqlConnection();
            DataSet CustomersDataSet = new DataSet();
            SqlDataAdapter da;
            SqlCommandBuilder cmdBuilder;
            // Set the connection string of the SqlConnection object
            // to connect to the SQL Server database in which you
            // created the sample table.
            cn.ConnectionString =
            "Server=server;Database=northwind;UID=login;PWD=password;";
            cn.Open();      
            // Initialize the SqlDataAdapter object by specifying a
            // Select command that retrieves data from the sample table.
            da = new SqlDataAdapter("select * from CustTest order by CustId", cn);
            // Initialize the SqlCommandBuilder object to automatically
            // generate and initialize the UpdateCommand,
            // InsertCommand, and DeleteCommand properties
            // of the SqlDataAdapter.
            cmdBuilder = new SqlCommandBuilder(da);
            // Populate the DataSet by running the Fill method
            // of the SqlDataAdapter.
            da.Fill(CustomersDataSet, "Customers");
            // Display the Update, Insert, and Delete commands
            // that were automatically generated
            // by the SqlCommandBuilder object.
            Console.WriteLine(
                "Update command Generated by the Command Builder : ");
            Console.WriteLine(
                "==================================================");
            Console.WriteLine(
                cmdBuilder.GetUpdateCommand().CommandText);
            Console.WriteLine("         ");
            Console.WriteLine(
                "Insert command Generated by the Command Builder : ");
            Console.WriteLine(
                "==================================================");
            Console.WriteLine(cmdBuilder.GetInsertCommand().CommandText);
            Console.WriteLine("         ");        
            Console.WriteLine(
                "Delete command Generated by the Command Builder : ");
            Console.WriteLine(
                "==================================================");
            Console.WriteLine(cmdBuilder.GetDeleteCommand().CommandText);
            Console.WriteLine("         ");
            // Write out the value in the CustName field before
            // updating the data using the DataSet.
            Console.WriteLine("Customer Name before Update : " +
                CustomersDataSet.Tables["Customers"].Rows[0]["CustName"]);
    
            // Modify the value of the CustName field.
            CustomersDataSet.Tables["Customers"].Rows[0]["CustName"] = "Jack";
            // Post the data modification to the database.
            da.Update(CustomersDataSet, "Customers");        
            Console.WriteLine("Customer Name updated successfully");
            // Close the database connection.
            cn.Close();
            // Pause
            Console.ReadLine();
        }
    }
}
于 2011-11-17T17:52:04.747 回答
2

我认为由 SqlCommandBuilder 生成的自动生成的 SqlCommands 并不适合您的情况(如果我正确理解了这个问题)。在 SqlCommandBuilder 生成的 SQL Update 语句的 WHERE 子句中,将所有列的值与其原始值(由 DataRow 中的原始数据值确定)进行比较。如果目标数据库中的原始值不匹配,则不会更新任何行。

这个指向 SqlCommandBuilder 的链接可能会有所帮助:

http://msdn.microsoft.com/en-us/library/ms971491.aspx

从该链接中,尝试了解:“adCriteriaAllCols”,因为这是 SqlCommandBuilder 使用的。我怀疑你想要的是“AdCriteriaKey”行为。

一种可能的解决方案可能是不使用 SqlCommandBuilder,而只需自己编写 INSERT/UPDATE/DELETE SqlCommand,并将它们附加到 SqlDataAdapter.InsertCommand、UpdateCommand 和 DeleteCommand。
有一些示例代码在:http: //support.microsoft.com/kb/308055

编辑:.net 2.0 版及更高版本中的 SqlCommandBuilder 具有 ConflictOption 属性。默认使用的是:CompareAllSearchableValues。尝试使用:OverwriteChanges,这会导致SQL语句中生成的WHERE子句只比较主键值。

于 2011-11-19T01:02:57.303 回答
1

我尝试发表评论,但被告知重新阅读问题。所以我做到了,但它没有帮助:) 在那个例子中你有很少的代码将dt(你说这是从 Excel 填充的)与数据库联系起来。您有变量connectionToSQLcmd和。这些连接到数据库。然后您遍历,事实并非如此。这就是为什么在我的评论中我要求提供示例源代码,您正在修改 dt 中的行 - 因为我假设您会在某个地方拥有它,以便期望更改会从 Excel(其中填充)跳转到您的数据库。dabdtdt

我看到您正在调用da.Update(dt);尝试从数据库中打开一个新数据集,并遍历 中的行dt,将更改应用于新数据集中的行。据我所知 - 那里没有太多代码 - 没有发出命令,因为数据适配器知道内部行dt不是来自其数据源。无论如何,那是我的刺。

于 2011-11-17T23:41:14.280 回答