当前位置: 移动技术网 > IT编程>开发语言>c# > C#实现异步连接Sql Server数据库的方法

C#实现异步连接Sql Server数据库的方法

2019年07月18日  | 移动技术网IT编程  | 我要评论

本文实例讲述了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();
  }
}

希望本文所述对大家的c#程序设计有所帮助。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网