0

次のようなデータを含むテストSQL Serverテーブルがあります

  ItemId    Description ItemCost
    1           first item  100
    2           second item 200
    3           third item  300

Itemsテーブルに項目を追加するストアド プロシージャ

create proc spInsertItem
 @itemId int
,@itemDescription varchar(50)
,@itemCost decimal
as
begin
    if(@itemCost < 0)
        begin
            raiserror('cost cannot be less than 0',16,1)
        end
    else
        begin
            begin try
                begin tran
                    insert into Items(itemid, [description],itemCost)
                    values (@itemid, @itemdescription,@itemCost)
                commit tran
            end try
        begin catch
            rollback tran
                select   ERROR_LINE()as errorLine
                        ,ERROR_MESSAGE() as errorMessage
                        ,ERROR_STATE() as errorState
                        ,ERROR_PROCEDURE() as errorProcedure
                        ,ERROR_NUMBER() as errorNumber
        end catch
    end
end 

SSMS で手順を実行すると、負のコストのエラーが正しく報告されます。次のコードを使用すると:

protected void btnSubmit_Click(object sender, EventArgs e)
        {
            string cs = ConfigurationManager.ConnectionStrings["dbcsI3"].ConnectionString;
            using (var con = new SqlConnection(cs))
            {
                SqlTransaction tran = con.BeginTransaction();
                try
                {
                    using (var cmd = new SqlCommand("spInsertItem", con))
                    {

                        con.Open();
                        cmd.CommandType = CommandType.StoredProcedure;
                        cmd.Parameters.AddWithValue("@itemId", Convert.ToInt32(txtItemId.Text));
                        cmd.Parameters.AddWithValue("@itemdescription", txtItemDescription.Text);
                        cmd.Parameters.AddWithValue("@itemCost", Convert.ToInt32(txtItemCost.Text));
                        cmd.ExecuteNonQuery();
                        tran.Commit();
                    }
                }
                catch (Exception ex)
                {
                    lblStatus.Text = ex.Message; //the intent is to print the error message to the user 
                    tran.Rollback();
                }
            }
        }

このコードを使用すると、接続が閉じられているという例外が発生しますが、SSMS にホップすると、正常に動作していることがわかります。物事を動かしてすべてを機能させる前に、接続が閉じられているというエラーが発生する理由を知りたいです。そのテーブルに実行可能なデータを入力するたびに、この手順も機能します。

4

1 に答える 1

7

前に接続を開いてみてくださいBeginTransaction

using (var con = new SqlConnection(cs))
{
   con.Open();
   SqlTransaction tran = con.BeginTransaction(); 
   // rest of the code 
于 2013-08-12T15:04:46.850 に答える