欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

c#如何访问本地数据库

程序员文章站 2022-05-28 08:33:07
...
  <connectionStrings>
	  <add name="Time" connectionString="Data Source=.;Integrated Security=true;Initial Catalog=Time;" providerName="SqlServer" />
  </connectionStrings>
//其中“Data Source=.”表示连接本地数据库,“Integrated Security=true”表示采用windows身份验证,“Initial Catalog=Time”表示连接Time数据库。