C#实现异步连接Sql Server数据库的方法
作者:gogo
这篇文章主要介绍了C#实现异步连接Sql Server数据库的方法,涉及C#中await方法的相关使用技巧,具有一定参考借鉴价值,需要的朋友可以参考下
本文实例讲述了C#实现异步连接Sql Server数据库的方法。分享给大家供大家参考。具体分析如下:
.net最新版提供了await方法,可以使我们可以很容易实现到数据库的异步连接
复制代码 代码如下:
readonly string ConnectionString = "Data Source=database_server_name;Initial Catalog=Store;Integrated Security=True";
protected async void ExecuteCommandAsync()
{
using (SqlConnection con = new SqlConnection(ConnectionString))
{
await con.OpenAsync();
}
}
protected async void ExecuteCommandAsync()
{
using (SqlConnection con = new SqlConnection(ConnectionString))
{
await con.OpenAsync();
}
}
希望本文所述对大家的C#程序设计有所帮助。