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