我已经使用SQL Management Studio创建数据库。我现在应该使用哪个连接字符串。另外数据库为什么没有出现在Server对象资源管理器中?我过去曾在Dot Net上工作,但我从未亲自处理过数据库创建部分。请帮忙。谢谢
我自己的尝试是:
private void Form1_Load(object sender, EventArgs e)
{ string constr = @"Data Source = Diabete; Initial Catalog = Cibi; Integrated Security = TRUE;";
using (SqlConnection con = new SqlConnection(constr)){
con.Open(); //here get error (cannot find server or database)
using (SqlCommand cmd = new SqlCommand()) {
cmd.CommandText = "";
using (SqlDataAdapter da = new SqlDataAdapter(cmd))
{ }
}
}
}
慕妹3242003
相关分类