错误:ExecuteReader需要打开且可用的连接。连接的当前状态是打开的

时间:2013-12-19 04:52:14

标签: c# asp.net-mvc-4

我有mvc 4网站,下面有DataHelperClass来执行查询。我的问题有时候,网站通过例外作为标题。我使用block来处理SqlCommand和SqlDataAdapter但没有成功。

请帮助我,对不起我的英语。

        try
        {
            if (_conn.State == ConnectionState.Closed)
                _conn.Open();

            using (SqlCommand sqlCommand = new SqlCommand(query, _conn))
            {
                sqlCommand.CommandType = CommandType.StoredProcedure;

                if (parameters != null)
                    sqlCommand.Parameters.AddRange(parameters);

                //// check transaction is exist
                if (_trans != null)
                    sqlCommand.Transaction = _trans;

                DataTable dt = new DataTable();
                using (SqlDataAdapter sqlDataAdapter = new SqlDataAdapter(sqlCommand))
                {
                    sqlDataAdapter.Fill(dt);
                }

                return dt;
            }
        }
        finally
        {
            //// close connection automatically if transaction is not exist
            if (_trans == null) { _conn.Close(); }
        }

1 个答案:

答案 0 :(得分:8)

可能导致您的连接未真正打开,因为调用此代码时:

if (_conn.State == ConnectionState.Closed)
      _conn.Open();

连接状态可以是:Broken,或ConnectingFetching(请参阅所有enum list)。

如果您尝试在多个线程之间共享连接,则可能会发生这种情况。我认为每次调用此方法时都需要创建一个新连接。您可以找到许多示例,包括MSDN

修改

这个问题有一个很好的答案:ExecuteReader requires an open and available Connection. The connection's current state is Connecting

但如果你确实需要它,请尝试使用lock防止使用与两个或多个线程相同的连接(实际上它是错误的,请参阅上面的链接):

lock(_conn)
{
    DataTable dt = new DataTable();
    using (SqlDataAdapter sqlDataAdapter = new SqlDataAdapter(sqlCommand))
    {
        sqlDataAdapter.Fill(dt);
    }
}