欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

数据库连接

程序员文章站 2022-06-15 22:30:42
...

appSettings add key="sqlCon" value="Data Source=(local);Database=Northwind;Uid=sa;Pwd=;"/ /appSettings protected void Page_Load(object sender, EventArgs e) { string con_sqlserver = ConfigurationManager.AppSettings["sqlCon"].ToString();//获



protected void Page_Load(object sender, EventArgs e)
{
string con_sqlserver = ConfigurationManager.AppSettings["sqlCon"].ToString();//获取配置文件中的数据库字符串信息
Response.Write("SQL Server数据库连接字符串:"+con_sqlserver);//输出配置文件中的数据库字符串信息
SqlConnection con = new SqlConnection(con_sqlserver);//创建数据库连接对象
try
{
con.Open();//打开数据库连接
Response.Write("");
con.Close();//关闭数据库连接
}
catch (Exception ex)
{
Response.Write("");
}
}