0

为什么我有这个错误:

无法打开登录请求的数据库“源”。登录失败。

用户 'my-PC\my' 登录失败

我使用“Windows”模式。从视觉上我可以访问数据,但是当我运行它(asp项目)时出现错误。当用Management Studio的修改版本替换项目中的数据库时出现此错误(我只修改了未在项目中调用的存储过程)。我阅读了一些文章并在安全选项中允许“my-PC\my”所有操作。没有效果。

编辑:

这是我的连接字符串:

    "Server=(local);Database=source;Integrated Security=SSPI;"
4

1 回答 1

1

使用连接字符串:

"Server=.\SqlExpress;Database=<fill in your database name>;Integrated Security=SSPI"

如果不起作用,请创建一个 SQL 服务器帐户并使用此连接字符串:

"Server=.\SqlExpress;Database=<fill in your database name>;User ID=<fill in your username>;Password=<fill in your password>;"
于 2012-10-24T12:21:30.850 回答