C#异步连接Sql Server数据库 C#实现异步连接Sql Server数据库的方法
gogo 人气:0想了解C#实现异步连接Sql Server数据库的方法的相关内容吗,gogo在本文为您仔细讲解C#异步连接Sql Server数据库的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:C#,异步连接,Sql,Server,数据库,下面大家一起来学习吧。
本文实例讲述了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#程序设计有所帮助。
加载全部内容