Access数据库连接字符串错误
所以我正在本地主机上创建一个网站,并且我在 C:\inetpub\wwwroot\Lollipops\App_Data\lollipopDB.mdb 中有一个数据库,我需要在我的网站上使用它,但是当我尝试对其执行 SELECT 语句时,它不断给我错误:“System.ArgumentException:不支持关键字:'provider'。”
这是在我的 web.config 文件中 -
< connectionStrings>
< add name="lollipopDB" connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\inetpub\wwwroot\Lollipops\App_Data\lollipopDB.mdb;" providerName="System.Data.OleDb" />
< /connectionStrings>
网站调用 PerformSQL 函数,该函数接受连接字符串的名称和要运行的 sql 字符串。
public void PerformSQL(string conn, string sqlStr)
{
sqlConn.ConnectionString = ConfigurationManager.ConnectionStrings[conn].ConnectionString;
sql.CommandText = sqlStr;
sql.Connection = sqlConn; //specify connection string for the command instance
sqlConn.Open();
sql.ExecuteNonQuery();
sqlConn.Close();
}
So I'm making a website on localhost and I have a database in C:\inetpub\wwwroot\Lollipops\App_Data\lollipopDB.mdb that I need to use on my website but when I try to do a SELECT statement on it, it keeps giving me the error: "System.ArgumentException: Keyword not supported: 'provider'."
This is in my web.config file -
< connectionStrings>
< add name="lollipopDB" connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\inetpub\wwwroot\Lollipops\App_Data\lollipopDB.mdb;" providerName="System.Data.OleDb" />
< /connectionStrings>
and the website calls the function PerformSQL which takes the name of a connection string and the sql string to run.
public void PerformSQL(string conn, string sqlStr)
{
sqlConn.ConnectionString = ConfigurationManager.ConnectionStrings[conn].ConnectionString;
sql.CommandText = sqlStr;
sql.Connection = sqlConn; //specify connection string for the command instance
sqlConn.Open();
sql.ExecuteNonQuery();
sqlConn.Close();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
sqlConn 的类型是什么?
它需要是 OleDbConnection。同样,该命令必须是 OleDbCommand。
What's the type of sqlConn?
It needs to be OleDbConnection. Similarly the command needs to be an OleDbCommand.