C#实现异步连接Sql Server数据库的方法
程序员文章站
2023-10-26 23:39:16
本文实例讲述了c#实现异步连接sql server数据库的方法。分享给大家供大家参考。具体分析如下:
.net最新版提供了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#程序设计有所帮助。
上一篇: C#约瑟夫问题解决方法
推荐阅读
-
nodejs实现连接mongodb数据库的方法示例
-
C#简单访问SQLite数据库的方法(安装,连接,查询等)
-
使用SQL Server数据库嵌套子查询的方法
-
C#实现异步连接Sql Server数据库的方法
-
.net(C#数据库访问) Mysql,Sql server,Sqlite,Access四种数据库的连接方式
-
使用数据库客户端工具Oracle SQL Developer加载第三方驱动连接mysql的方法
-
SQL Server 2005 数据库转 SQL Server 2000的方法小结
-
php使用sql server验证连接数据库的方法
-
sql server数据库高可用日志传送的方法
-
SQL Server 数据库调整表中列的顺序操作方法及遇到问题