編集: SQL 接続が更新されました。
コントローラー:
Imports System.Data.SqlClient
Function SQLSelect() As ActionResult
Dim theconnection As New SqlConnection("Data Source=MSSQLSERVER;server=(localdb)\Projects;Database=test_drive_database;User Id=xxxx_user-PC\xxxx_user;password=;Trusted_Connection=True;Integrated Security=True;")
theconnection.Open()
Dim queryString As String = "SELECT * FROM ColorTable"
Dim command As New SqlCommand(queryString)
command.BeginExecuteNonQuery()
command.CommandTimeout = 15
command.CommandType = CommandType.Text
'Printing Out the SQL Result
Return ViewData("command")
End Function
エラーメッセージ:
Cannot open database "test_drive_database" requested by the login. The login failed.
Login failed for user 'xxxx_user-PC\xxxx_user'.
ログインが失敗した正確な理由を調べる方法は?
注意: パスワードは使用されません。
補遺:
Dim theconnection As New SqlConnection("Data Source=MSSQLSERVER;server=(localdb)\Projects;Database=ColorTable_database.sdf;Integrated Security=sspi;")
theconnection.Open()
これも私が試したバリエーションですが、同じエラー メッセージが表示されます。