SQL连接问题
代码如下: string strCon = "Server=localhost; Integrated Security=SSPI; database=
SqlConnection con = new SqlConnection(strCon);
try
{
con.Open();
}
catch(SqlException e1)
{
MessageBox.Show(e1.Message);
}
结果是:sqlserver不存在或拒绝访问
我已经把SQL的身份验证设为:SQL Server和Windowns了 ,并且运行SQL了。
怎么会有上面的提示?而且数据库的名称就是:
错在哪???