- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个方法可以从我的数据库中异步获取结果:
internal class CommandAndCallback<TCallback, TError>
{
public SqlCommand Sql { get; set; }
public TCallback Callback { get; set; }
public TError Error { get; set; }
}
public void GetResults(string param, Action<DataTable,DataTable> callback, Action<string> error, Action<string> info)
{
var conn = new SqlConnection(_connString);
conn.InfoMessage += delegate(object sender, SqlInfoMessageEventArgs e)
{
if (e.Errors.Count <= 0) return;
foreach (SqlError message in e.Errors)
{
info(message.State + " " + message.Message);
}
};
SqlCommand cmd = conn.CreateCommand();
cmd.CommandTimeout = 0;
cmd.CommandType = CommandType.StoredProcedure;
cmd.CommandText = @"GetData";
cmd.Parameters.Add("@param", SqlDbType.NVarChar).Value = param;
try
{
cmd.Connection.Open();
}
catch (Exception ex)
{
error(ex.ToString());
return;
}
var ar = new CommandAndCallback<Action<DataTable,DataTable>, Action<string>> { Callback = callback, Error = error, Sql = cmd };
cmd.BeginExecuteReader(Krok2_Handler, ar, CommandBehavior.CloseConnection);
}
private static void Krok2_Handler(IAsyncResult result)
{
var ar = (CommandAndCallback<Action<DataTable,DataTable>, Action<string>>)result.AsyncState;
if (result.IsCompleted)
{
try
{
SqlDataReader dr = ar.Sql.EndExecuteReader(result);
var dt1 = new DataTable();
var dt2 = new DataTable();
dt1.Load(dr);
if (dr.NextResult())//I can't access second table in results
{
dt2.Load(dr);
}
dr.Close();
ar.Callback(dt1,dt2);
}
catch (Exception ex)
{
ar.Error(ex.Message);
}
}
else
{
ar.Error("Error calling SQL");
}
}
我这样调用它:
GetResults("Param value, Success, Error, Info);
当我的过程返回单个结果时一切正常,但是当我添加第二个选择时我的数据读取器没有得到它们,可能是因为当我调用 EndExecuteReader
时连接正在关闭。
如何修改我的代码以支持多个结果,以便将它们传递给我的回调方法?
最佳答案
我已经测试过了,我认为问题出在这里:
dt1.Load(dr);
if (dr.NextResult())//I can't access second table in results
{
dt2.Load(dr);
}
据我所知,对 Load 的调用会自动将 SqlDataReader 推进到下一个记录集,因此您对 dr.NextResult() 的调用将返回 false。
如果你只是这样做,我想你会发现它有用,它对我有用:
dt1.Load(dr);
dt2.Load(dr);
编辑: 我刚刚检查了 DataTable.Load 的来源,它确实为您调用了 NextResult 方法:
if (!reader.IsClosed && !reader.NextResult())
{
reader.Close();
}
编辑2当循环 SqlDataReader 你应该使用这个:
if (result.IsCompleted)
{
try
{
List<string> table1 = new List<string>();
List<string> table2 = new List<string>();
SqlDataReader dr = ar.Sql.EndExecuteReader(result);
while (dr.Read())
{
table1.Add(dr[0].ToString());//get data from first table
}
if (dr.NextResult())//second table
{
while (dr.Read())
{
table2.Add(dr[0].ToString()); //get data from second table
}
}
dr.Close();
ar.Callback(table1 ,table2);
}
catch (Exception ex)
{
ar.Error(ex.Message);
}
}
关于c# - BeginExecuteReader、EndExecuteReader 和多个结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28251057/
美好的一天。 请帮助我了解如何使用通用列表使用 SqlCommand 类的三种方法 BeginExecuteReader()。我用 BeginExecuteReader 做了一个方法,但我不知道这是否
我有一个方法可以从我的数据库中异步获取结果: internal class CommandAndCallback { public SqlCommand Sql { get; set; }
我正在异步调用 sql 命令的 beingexecutereader 方法,用户可以取消该调用。当取消发生时,我取消了 sqlcommand 对象,这将终止 sql server 上的执行作业。 但是
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 6 年前。 Improve this qu
我希望这里有人可以帮助我。 我工作的公司希望我使用 MySQL 而不是 MSSQL。所以我下载了最新的驱动程序(6.1),正在移植DB层。 但是我找不到以回调作为参数的 BeginExecuteRea
我是一名优秀的程序员,十分优秀!