本文实例讲述了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#程序设计有所帮助。