C# 连接SQLServer操作数据库问题

avatar
作者
猴君
阅读量:0

C#联合SQLServer开发时连接数据库报错connection 连接问题
报错信息:
This operation requires a connection to the ‘master’ database. Unable to create a connection to the ‘master’ database because the original database connection has been opened and credentials have been removed from the connection string. Supply an unopened connection.
解决方案:
1、connection配置中加入: Integrated Security=True,表示可以在不知道数据库用户名和密码的情况下,依然可以连接数据库
2、connection配置中加入:Persist Security Info = True,表示数据库连接成功后是否保存密码信息
连接字符串可配置为:string connectionString=@“服务器名称;Database=数据库名称;User Id=用户名称;Integrated Security=True”;

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!