0

私のページはリピーターで構成され、SQL Server 2008 のストア プロシージャを使用してデータをバインドします。

rptTour.DataSource = GetData();
rptTour.DataBind();

データバインディング GetData()

SqlCommand cmdSelectAllMatch = new SqlCommand("sp_sel_Tour", Global.conn);
    SqlDataReader dtrSelectAllMatch = null;
    Collection<TourBO> TourData = new Collection<TourBO>();

    try
    {
        Global.connD2W.Open(); //error here, line 23
        cmdSelectAllMatch.CommandType = System.Data.CommandType.StoredProcedure;
        dtrSelectAllMatch = cmdSelectAllMatch.ExecuteReader();

        while (dtrSelectAllMatch.Read())
        {
            TourBO Tour = new TourBO();
            TourID = Convert.ToInt16(dtrSelectAllMatch[dtrSelectAllMatch.GetOrdinal("ID")]);
            Tour.Name = dtrSelectAllMatch[dtrSelectAllMatch.GetOrdinal("Name")].ToString();


            TourData.Add(Tour);
        }
    }
    catch(Exception ex)
    {
        Global.Log(ex.ToString());
    }
    finally
    {
        Global.connD2W.Close();            
    }

    if (dtrSelectAllMatch != null)
    {
        dtrSelectAllMatch.Close();
    }
    return TourData;

これは、アプリケーション全体で共有される sqlconnection です。

public static SqlConnection connD2W = new SqlConnection(ConfigurationManager.ConnectionStrings["D2WConnectionString"].ConnectionString);

データ リーダーからすべてのデータを読み取り、カスタム コレクションに割り当てて、リピーターに戻すだけです。

自分でテストすると、すべて正常に動作します。しかし、Visual Studio (20 人のユーザーで 2 分間実行) を使用して Lost Test を実行すると、エラー ログ ファイルに以下のエラーが表示されました (同じエラーが繰り返されます)。

Log Entry : 9:59:05 AM Thursday, November 07, 2013
:System.InvalidOperationException: The connection was not closed. The connection's current state is connecting.
at System.Data.ProviderBase.DbConnectionBusy.OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory)
at System.Data.SqlClient.SqlConnection.Open()
at TourDAL.GetAllScheduledMatch() in c:\Documents\Visual Studio 2010\WebSites\test\App_Code\DAL\TourDAL.cs:line 23

この機能は複数のユーザーが同時にアクセスできないということですか? これを解決する方法はありますか?

4

1 に答える 1

1

グローバル接続を使用している場合 (グローバル変数または静的変数として定義されている場合など)、複数のスレッドが同時に実行されている環境 (Web サーバーなど) では機能しません。

その理由は、すべてのスレッドが同じコードを通過するためです。最初のものは接続を開き、他のすべてのものに対しても開いたままになります。

接続をローカルで定義し、ジョブが完了したらすぐに開いて閉じることをお勧めします。

于 2013-11-07T03:59:26.817 に答える