Microsoft Robotics和Sql

时间:2010-11-05 15:37:50

标签: ado.net ccr

我在使用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之后暂停我的代码并检查我的数据库时,一切看起来都很好......如果我摆脱暂停广告运行我的代码,数据库没有任何反应,并且没有例外被抛出......

1 个答案:

答案 0 :(得分:3)

这里的问题是您在两个Arbiter.Activate块的范围内调用using。不要忘记您创建的CCR任务已排队,当前线程继续...正好超出using块的范围。你已经创建了一个竞争条件,因为Choice必须在connSPcmdSP被处理之前执行,这只会在你干扰线程时间时发生,就像你有在调试时观察到。

如果您要在Choice的处理程序委托中手动处理处理,则不会再出现此问题,但这会导致容易忽略处理的脆弱代码。

我建议实施CCR迭代器模式并使用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
        }
    )
);