将结果从winform DataGridView写入数据库表非常慢

时间:2012-06-09 22:02:33

标签: c# winforms sql-server-ce

我有一个未绑定到SQL Server CE中的表的DataGridView(DGV)。 然后,WinForm上的“更新数据库”按钮调用以下方法PushFromDGV。然后清除表格HelloWorld,然后浏览DGV中的项目,将其插入HelloWorld

DGV中大约有1000行,运行需要几分钟。

我是否真的需要进行1000次往返才能将数据写入数据库表,还是有一种方法可以在一次旅行中完成?

    private void PushFromDGV()
    {
        ExecCommand(@"DELETE FROM HELLOWORLD");    
        for (int i = 0; i < uxExperimentDGV.RowCount-1; ++i)
        { //iterate for every row in the DGV
            ExecCommand(@"INSERT INTO HELLOWORLD SELECT '" + (string)uxExperimentDGV[0, i].Value + "'");
        }
    }  
    public void ExecCommand(string myCommand)
    {
        // Open the connection
        try
        {
            using (SqlCeConnection conn = new SqlCeConnection(ConfigurationManager.ConnectionStrings["DatabaseDGVexperiments.Properties.Settings.DatabaseDGVexperimentsConnStg"].ConnectionString)) // conn.Open();
            {// 1. Instantiate a new command with a query and connection
                conn.Open();
                SqlCeCommand cmd = new SqlCeCommand(myCommand, conn);
                cmd.CommandText = myCommand;  // 2. Set the CommandText property
                cmd.Connection = conn;  // 3. Set the Connection property
                cmd.ExecuteNonQuery();  // 4. Call ExecuteNonQuery to send command
            }
        }
        catch (Exception ex)
        {
            MessageBox.Show((string)ex.Message);
            return;
        }
    }

有人建议在循环之前进行一次打开连接,然后在循环之后关闭它。我现在有以下内容。

这是一个准确的解释

    public SqlCeConnection conn = new SqlCeConnection(ConfigurationManager.ConnectionStrings["DatabaseDGVexperiments.Properties.Settings.DatabaseDGVexperimentsConnStg"].ConnectionString);

    private void PushFromDGV()
    {
        conn.Open();
        ExecCommand(@"DELETE FROM HELLOWORLD"); 
        for (int i = 0; i < uxExperimentDGV.RowCount - 1; ++i)
        { //iterate for every row in the DGV
            ExecCommand(@"INSERT INTO HELLOWORLD SELECT '" + (string)uxExperimentDGV[0, i].Value + "'");
        }
        conn.Close();
    }   

    public void ExecCommand(string myCommand) 
    {
        try
        {
             SqlCeCommand cmd = new SqlCeCommand(myCommand, conn);
             cmd.CommandText = myCommand;  
             cmd.Connection = conn;  
             cmd.ExecuteNonQuery();  
        }
        catch (Exception ex)
        {
            MessageBox.Show((string)ex.Message);
            return;
        }
    }  

1 个答案:

答案 0 :(得分:3)

打开一次连接,然后执行所有命令,然后关闭数据库连接。这应该可以节省很多时间。

此外,您可以尝试创建事务并将所有命令作为事务的一部分运行。根据您使用的数据库引擎,这可能会加快速度。

P.S。:什么是 DGV