c# – 从web.config文件获取sql连接字符串

前端之家收集整理的这篇文章主要介绍了c# – 从web.config文件获取sql连接字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在学习通过点击按钮从文本框写入数据库.我已经在我的web.config文件中指定了我的NorthWind数据库的连接字符串.但是我无法访问我的代码中的连接字符串.

这是我试过的

protected void buttontb_click(object sender,EventArgs e)
{
    System.Configuration.Configuration rootwebconfig = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("/Mohtisham");
    System.Configuration.ConnectionStringSettings constring;
    constring = rootwebconfig.ConnectionStrings.ConnectionStrings["northwindconnect"];
    sqlConnection sql = new sqlConnection(constring);

    sql.Open();
    sqlCommand comm = new sqlCommand("Insert into categories (categoryName) values ('" + tb_database.Text + "')",sql);
    comm.ExecuteNonQuery();
    sql.Close();
}

我得到一个工具提示错误

sqlConnection sql = new sqlConnection(constring);

System.data.sqlClient.sqlconnection.sqlconnection(string) has some invalid arguments.

我想加载连接字符串从web.config在约束

解决方法

这是因为 ConnectionStrings集合是 ConnectionStringSettings对象的集合,但是 SqlConnection构造函数需要一个字符串参数.所以你不能自己通过约束.

试试这个.

sqlConnection sql = new sqlConnection(constring.ConnectionString);
原文链接:https://www.f2er.com/csharp/91821.html

猜你在找的C#相关文章