在页面上拉一个sqldatasorurce控件,为这个空间绑定数据库。按照这个控件的导向,就可以得到一个SQL连接字符串。这个导向是有检查连接陈功的功能。
用代码如何实现啊 只需要讲讲sqlconnection类 这不是实现数据库连接嘛!比如:
string ConnectionString = "Data Source="local";Initial Catalog=Student;Integrated Security=True";
Connection = new SqlConnection(ConnectionString);
Connection.Open();
怎么检验我是否连接到数据库啊
@that is why: 哥们儿,我去吃饭了,回来再说。。
@that is why:
try
{
Connection.Open();
}
catch{throw;}
如果没有捕捉到异常,则连接成功。捕捉到异常,看提示信息。
这个嘛,哎,给你做个ASP.Net的Demo。
private void TestConnection()
{
string connectionStr=WebConfigurationManager.ConnectionStrings["ThreeKingdoms"].ConnectionString;
SqlConnection con = new SqlConnection(connectionStr);
try
{
con.Open();
htmlContent.Text = "<b>数据库版本:</b>" + con.ServerVersion;
htmlContent.Text += "<br /> <b> 链接状态:</b>" + con.State.ToString();
}
catch (Exception err)
{
htmlContent.Text += "<br /><b>链接失败:</b>" + err.Message;
}
finally
{
con.Close();
htmlContent.Text += "<br /> 链接状态:</b>" + con.State.ToString();
}
}
属性State显示是否链接成功,一个Open,一个Closed
对,你可以在页面上拉一个sqldatasorurce控件,然后设置数据源。所以的设置完毕后,你会发出 webconfig中会生成一条数据库连接字符串。