2

我在使用 SQL 实现 CCR 时遇到问题。似乎当我逐步执行我的代码时,我试图执行的更新和插入效果很好。但是当我在没有任何断点的情况下通过我的界面运行时,它似乎正在工作,它显示了插入、更新,但在运行结束时,数据库中没有任何更新。

每次我从池中拉出一个新线程并且它可以工作时,我都会在我的代码中添加一个暂停......但这违背了异步编码的目的,对吗?我希望我的界面更快,而不是放慢速度......

任何建议......这是我的代码的一部分:

我使用两个帮助类来设置我的端口并得到响应......

    /// <summary> 
    /// Gets the Reader, requires connection to be managed 
    /// </summary> 
    public static PortSet<Int32, Exception> GetReader(SqlCommand sqlCommand)
    {
        Port<Int32> portResponse = null;
        Port<Exception> portException = null;
        GetReaderResponse(sqlCommand, ref portResponse, ref portException);
        return new PortSet<Int32, Exception>(portResponse, portException);
    }

    // Wrapper for SqlCommand's GetResponse 
    public static void GetReaderResponse(SqlCommand sqlCom,
       ref Port<Int32> portResponse, ref Port<Exception> portException)
    {
        EnsurePortsExist(ref portResponse, ref portException);
        sqlCom.BeginExecuteNonQuery(ApmResultToCcrResultFactory.Create(
           portResponse, portException,
           delegate(IAsyncResult ar) { return sqlCom.EndExecuteNonQuery(ar); }), null);
    }

然后我做这样的事情来排队我的电话......

        DispatcherQueue queue = CreateDispatcher();
        String[] commands = new String[2];
        Int32 result = 0;
        commands[0] = "exec someupdateStoredProcedure";
        commands[1] = "exec someInsertStoredProcedure '" + Settings.Default.RunDate.ToString() + "'";

        for (Int32 i = 0; i < commands.Length; i++)
        {
            using (SqlConnection connSP = new SqlConnection(Settings.Default.nbfConn + ";MultipleActiveResultSets=true;Async=true"))
            using (SqlCommand cmdSP = new SqlCommand())
            {
                connSP.Open();
                cmdSP.Connection = connSP;
                cmdSP.CommandTimeout = 150;
                cmdSP.CommandText = "set arithabort on; " + commands[i];

                Arbiter.Activate(queue, Arbiter.Choice(ApmToCcrAdapters.GetReader(cmdSP),
                    delegate(Int32 reader) { result = reader; },
                    delegate(Exception e) { result = 0; throw new Exception(e.Message); }));
            }
        }

其中 ApmToCcrAdapters 是我的辅助方法所在的类名...

问题是当我在调用 Arbiter.Activate 后立即暂停我的代码并检查我的数据库时,一切看起来都很好......如果我摆脱暂停广告运行我的代码,数据库没有任何反应,也没有例外要么被扔...

4

1 回答 1

3

这里的问题是您在两个块Arbiter.Activate的范围内调用。using不要忘记您创建的 CCR 任务已排队,并且当前线程继续...超过using块的范围。您已经创建了一个竞争条件,因为Choice必须在之前执行connSP并被cmdSP释放,并且这只会在您干扰线程计时时发生,正如您在调试时所观察到的那样。

相反,如果您要在处理程序委托中手动Choice处理 .

我建议实施 CCR 迭代器模式并使用 a 收集结果,MulitpleItemReceive以便您可以保留您的using语句。它使代码更清晰。在我的脑海中,它看起来像这样:

private IEnumerator<ITask> QueryIterator(
    string command,
    PortSet<Int32,Exception> resultPort)
{
    using (SqlConnection connSP = 
        new SqlConnection(Settings.Default.nbfConn 
            + ";MultipleActiveResultSets=true;Async=true"))
    using (SqlCommand cmdSP = new SqlCommand())
    {
        Int32 result = 0;
        connSP.Open();
        cmdSP.Connection = connSP;
        cmdSP.CommandTimeout = 150;
        cmdSP.CommandText = "set arithabort on; " + commands[i];

        yield return Arbiter.Choice(ApmToCcrAdapters.GetReader(cmdSP),
            delegate(Int32 reader) { resultPort.Post(reader); },
            delegate(Exception e) { resultPort.Post(e); });
    }

}

你可以像这样使用它:

var resultPort=new PortSet<Int32,Exception>();
foreach(var command in commands)
{
    Arbiter.Activate(queue,
        Arbiter.FromIteratorHandler(()=>QueryIterator(command,resultPort))
    );
}
Arbiter.Activate(queue,
    Arbiter.MultipleItemReceive(
        resultPort,
        commands.Count(),
        (results,exceptions)=>{
            //everything is done and you've got 2 
            //collections here, results and exceptions
            //to process as you want
        }
    )
);
于 2010-12-01T20:15:00.840 回答