0

我正在通过 C sharp 调用存储过程,由于某种奇怪的原因,它在第二次运行时超时。

调用存储过程的代码:

  private void LoadData()
    {
        BackgroundWorker bw = new BackgroundWorker();

        bw.DoWork += new DoWorkEventHandler(bw_LoadData);
        bw.RunWorkerCompleted += new RunWorkerCompletedEventHandler(bw_LoadDataComplete);

        Busy.IsBusy = true;
        Busy.BusyContent = "Loading Data";
        bw.RunWorkerAsync();
    }
    void bw_LoadData(object sender, DoWorkEventArgs e)
    {

            SqlConnection con = new SqlConnection(Logic.GetConnectionString());
            con.Open();
            SqlCommand com = new SqlCommand("spGetUserData", con);
            com.CommandType = System.Data.CommandType.StoredProcedure;
            com.Parameters.Add(new SqlParameter("@UID", uid));




          //Timeouts here on the second run
     SqlDataReader readUserData = com.ExecuteReader();
            while (readUserData.Read())
            {

                    origname = readUserData[0].ToString();
                    origemail = readUserData[1].ToString();
                    origcontact = readUserData[2].ToString();
                    origadd1 = readUserData[3].ToString();
                    origadd2 = readUserData[4].ToString();
                    origstate = readUserData[5].ToString();
                    origcity = readUserData[6].ToString();
                    origzip = readUserData[7].ToString();

                    origcountry = readUserData[8].ToString();


            }
            con.Close();
            con.Dispose();
            e.Result = "OK";


    }
    void bw_LoadDataComplete(object sender, RunWorkerCompletedEventArgs e)
    {

        Busy.IsBusy = false;
        txtFullName.Text =  origname;
      txtEmail.Text  = origemail ;
         txtContact.Text= origcontact;
         txtAdd1.Text= origadd1;
       txtAdd2.Text=  origadd2 ;
        txtState.Text=  origstate;
         txtCity.Text= origcity;
       txtZip.Text =  origzip;
       cboCountry.SelectedItem = origcountry;

    }

窗口加载事件期间的第一个方法调用..按预期工作。

       private void Window_Loaded_1(object sender, RoutedEventArgs e)
    {
        LoadData();

    }

发生超时的第二种方法调用。

    void bw_ChangeEmailComplete(object sender, RunWorkerCompletedEventArgs e)
     {
        if (e.Result.ToString() == "OK")
        {
            Busy.IsBusy = false;
          MessageBox.Show("The Email Address was changed successfully", "Message", MessageBoxButton.OK, MessageBoxImage.Information);


        }
        else
        {
            Busy.IsBusy = false;
            MessageBox.Show("An Unexpected Error occured or email already exist", "Error", MessageBoxButton.OK, MessageBoxImage.Error);



        }
        LoadData();


    }

最后是存储过程

          Create Proc [dbo].[spGetUserData]
         @UID varchar(50)
         AS
         Select FullName,Email,Contact,Address1,Address2,State,City,Zip,Country,SubDate,SID
         FROM Users
         Where UID = @UID

更新

尝试此操作并手动处理数据读取器后仍然无法正常工作

          using (SqlConnection con = new SqlConnection(Logic.GetConnectionString()))
            {

                using (SqlCommand com = new SqlCommand("spGetUserData", con))
                {
                    com.CommandType = System.Data.CommandType.StoredProcedure;
                    com.Parameters.Add(new SqlParameter("@UID", uid));



                    con.Open();
                    using (var readUserData = com.ExecuteReader())
                    {
                        while (readUserData.Read())
                        {

                                origname = readUserData[0].ToString();
                                origemail = readUserData[1].ToString();
                                origcontact = readUserData[2].ToString();
                                origadd1 = readUserData[3].ToString();
                                origadd2 = readUserData[4].ToString();
                                origstate = readUserData[5].ToString();
                                origcity = readUserData[6].ToString();
                                origzip = readUserData[7].ToString();

                                origcountry = readUserData[8].ToString();


                        }

                    }
                }
            }
4

2 回答 2

1

您忘记处置您的 DataReader readUserData,.

把它放在一个using声明中:

using (var readUserData = com.ExecuteReader())
{
    while (readUserData.Read())
        ...
}

(也using用于您的 SqlConnection -using比手动调用Close()和/或更好Dispose()。)

于 2013-02-09T16:01:48.700 回答
0

构建您的代码,以便您的连接、命令、阅读器等......自动关闭或处理。请参见下面的示例。

using (SqlConnection conn = new SqlConnection(--Conn String Here--)
{
    using (SqlCommand cmd = conn.CreateCommand())
    {
        // Set Conn Properties Here
        Conn.Open();
        using (SqlDataReader rdr = cmd.ExecuteReader())
        {

        } // Reader automatically disposed here
    }
} // Conn automatically closed here
于 2013-02-09T16:09:48.633 回答