C#多线程并发查询数据库,能实现真正的并发查询么
展开全部
在ado.net 2.0中可用异步命令试试。为了启用异步命令必须在连接字符串中把Async属性设置为true,以下是一个异步操作的例子:
//Begin executing the command
IAsyncResult ar=cmd.BeginExecutereader(new AsyncCallback(ProcessData),cmd);
启动异步操作以后,可以不管它而做任何其他工作。在该操作结束时调用指定的回调函数。回调函数如下:
public void processData(IAsyncResult ar)
{
SqlCommand cmd=(SqlCommand)iar.AsyncState;
SqlDataReader reader=cmd.EndExecuteReader(iar);
...
}
//Begin executing the command
IAsyncResult ar=cmd.BeginExecutereader(new AsyncCallback(ProcessData),cmd);
启动异步操作以后,可以不管它而做任何其他工作。在该操作结束时调用指定的回调函数。回调函数如下:
public void processData(IAsyncResult ar)
{
SqlCommand cmd=(SqlCommand)iar.AsyncState;
SqlDataReader reader=cmd.EndExecuteReader(iar);
...
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询