嘿,我刚开始学习使用后端作为 sql 在 C# 中制作应用程序。我设置了一些断点,以查看控件在执行cntCeilInn.Open();
不久后永远不会返回,输出窗口显示' System.Data.SqlClient.SqlException
'发生在System.Data.dll
谷歌告诉我它没有超时或我无法理解的东西。请帮忙。
string strServerName="EXPRESSION";
using (SqlConnection cntCeilInn = new SqlConnection("Data Source=" + strServerName + ";" + "Integrated Security=YES"))
{
SqlCommand cmdCeilInn= new SqlCommand("If exists ("+ "Select name "+ "from sys.database "+ "Where name=N'CeilInn1')"+ "DROP database CeilInn1;"+ "go"+ "create database CeilInn1;", cntCeilInn);
cntCeilInn.Open();
cmdCeilInn.ExecuteNonQuery();
}