我正在使用 Visual Studio 2012 和 SQL SERVER 2008 速成版。我用以下代码编写了一个 C# 程序。这里“SQLExpress”是我在安装过程中给出的实例名称......
private void btntest_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection();
con.ConnectionString = "Data Source=SQLExpress;Database = Emp;Integrated Security=True";
try
{
con.Open();
MessageBox.Show("success");
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
finally
{
if (con.State == ConnectionState.Open)
con.Close();
}
}
当我构建它时,没有显示任何错误..当我运行它时,没有抛出异常..但我看不到任何“MessageBox”..
我在这里做错了什么..
编辑:添加了整个代码。
@Oded 感谢您的帮助。我的问题已经解决。这是连接字符串的代码。
con.ConnectionString = @"Server=localhost\SQLExpress;Database = Emp;Integrated Security=True";