每当我尝试在Visual Studio中运行此脚本时,它无法连接到服务器(并向下捕获)。我试图在SQL Express中将数据输入到数据库中。调试器显示没有错误消息。如果不是很明显的话,我对C#/ SQL很陌生!
SqlConnection cnSqlSvr;
sSql = @"DataSource = computername\sqlexpress" +
@"Initial Catalog=FAI;" +
@"Integrated Security=SSPI;";
try
{
cnSqlSvr = new SqlConnection(sSql);
cnSqlSvr.Open();
}
catch (Exception ex)
{
MessageBox.Show("Error");
return;
}
答案 0 :(得分:3)
我认为您忘记在第一个和第二个字符串之间使用;
。
此外,您可以通过这种方式更改代码以查看问题
catch (Exception ex)
{
MessageBox.Show(ex.Message);
return;
}