我的桌面上安装了 SQL Server 2005 和 Visual Studio 2005。每次我运行 SQL Server 2005 时,我都必须手动选择“ RUN AS ADMINISTRATOR ”。我已尝试更改设置,但没有成功。所以我只这样做。但无论如何,这不是真正的问题。
现在,当我在 Visual Studio 控制台应用程序中为 Windows 身份验证创建连接字符串时,它会抛出错误“登录失败”。
我是 .NET 的新手
代码如下:
using System;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
public class Vin
{
public static void Main()
{
Console.WriteLine("Hello World!!!");
SqlConnection con = new SqlConnection("Data Source=.; Initial Catalog=VinOne; Integrated Security=True");
SqlCommand cmd = new SqlCommand("select * from Prod", con);
con.Open();
SqlDataReader dr = cmd.ExecuteReader();
while (dr.Read())
{
Console.WriteLine("Got It!!!");
}
Console.Read();
}
}