在进行实际插入之前测试tsql插入?

时间:2015-06-03 14:36:50

标签: c# sql asp.net tsql stored-procedures

我有一个asp.net应用程序,可以插入几个tsql表。格式如下:

Car myCar = new Car();
myCar.InsertNewCar(); //Makes SP call usp_InsertCar()

Truck myTruck = new Truck();
myTruck.InsertNewTruck(); //Makes SP call usp_InsertTruck()

Customer myCustomer = new Customer();
myCustomer.InsertNewCustomers(); //Makes SP call usp_InsertCustomers()

这些方法中的每一个都有一个try ... catch异常。问题是它可能会在myCustomer.InsertNewCustomers()中中断,但之前的2个插入已经完成。然后我必须手动删除所有插入,然后再试一次。我们已经进行了数据检查,但仍然会发生这种情况。

我正在考虑使用COMMIT& ROLLBACK与这些存储过程中的每一个,因此第一次传递将调用将回滚事务的所有5个方法。如果一切正常,那么我将使用COMMIT调用相同的存储过程。这样我就可以确定插件是否正确。

那会有意义吗?

1 个答案:

答案 0 :(得分:2)

您可以使用C#代码管理交易。添加using (TransactionScope scope = new TransactionScope())块以包裹您的呼叫。我认为你可能需要使用相同的连接 - 所以你可能必须将连接对象作为参数传递给你的方法。

修改:添加更多细节....

using (TransactionScope scope = new TransactionScope())
{
    // Assuming you are using SQL Server....
    using (SqlConnection conn = new SqlConnection(connectString1))
    {
        conn.Open();

        InsertToTable1(conn);
        // Snip...
        InsertToTable5(conn);

        // If this point is reached, everything is tickety boo            
        // Commit the transaction using Complete.
        // If the scope.Complete line is not hit before the using block 
        // is exited (i.e. an Exception is thrown, the transaction is rolled               
        // back.
        scope.Complete();
    }
}

您的InsertIntoTable方法看起来像

public void InsertIntoTable1(SqlConnection conn)
{
     //  Some non-database code could be here....

     SqlCommand cmd = conn.CreateCommand();
     // Configure command and execute

     //  Some non-database code could also be here....

}