0

我正在使用 SubSonic 2.1 并在执行交易时遇到问题

SharedDbConnectionScope 和 TransactionScope。问题是在 obj.Save() 方法中,我得到一个“连接必须有效且打开”异常

我将问题追踪到这一行:

// Loads a SubSonic ActiveRecord object
User user = new User(User.Columns.Username, "John Doe");

在用户类的这个构造函数中,调用了一个方法“LoadParam”,它最终会执行

if (rdr != null)
    rdr.Close();

看起来 rdr.Close() 隐式关闭了我的连接,这在使用 AutomaticConnection 时很好。但是在交易期间关闭连接通常不是一个好主意:-)

我的问题是这是设计使然,还是 MySqlDataReader 中的错误。

4

1 回答 1

0

那很棘手!经过一番调试,我在 SubSonic2 MySqlDataReader.cs 文件中找到了以下方法:

    public override IDataReader GetReader(QueryCommand qry)
    {
        AutomaticConnectionScope conn = new AutomaticConnectionScope(this);

        ...

        cmd.Connection = (MySqlConnection)conn.Connection;

        IDataReader rdr;

        try
        {
            rdr = cmd.ExecuteReader(CommandBehavior.CloseConnection);
        }
        catch(MySqlException x)
        {
            conn.Dispose();
            throw x;
        }

        ...
    }

这是错误的,因为我使用的是 SharedDbConnection。在 SqlDataProvider 中它已经被修复,但不是针对 MySqlDataReader。

它应该如下所示:

        try
        {
            // if it is a shared connection, we shouldn't be telling the reader to close it when it is done
            rdr = conn .IsUsingSharedConnection ?
                      cmd.ExecuteReader() : 
                      cmd.ExecuteReader(CommandBehavior.CloseConnection);
        }
        catch (MySqlException)
        {
            // AutoConnectionScope will figure out what to do with the connection
            conn.Dispose();
            //rethrow retaining stack trace.
            throw;
        }

相当严重的错误,它使在事务中查询变得不可能(我必须承认我以前从未需要过这个)。

于 2010-06-02T12:14:40.347 回答