c#使用SqlConnection连接SqlServer的connectstring
Posted 信仰圣光吧
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c#使用SqlConnection连接SqlServer的connectstring相关的知识,希望对你有一定的参考价值。
摘自https://www.connectionstrings.com/sql-server-2005/#1
Standard Security
Server=myServerAddress;Database=myDataBase;User Id=myUsername;
Password=myPassword;
Trusted Connection
Server=myServerAddress;Database=myDataBase;Trusted_Connection=True;
以上是关于c#使用SqlConnection连接SqlServer的connectstring的主要内容,如果未能解决你的问题,请参考以下文章
C# System.InvalidOperationException on sqlconnection close
C# CancellationToken 如何与 SqlConnection.OpenAsync(token) 一起使用?