不支持关键字。参数名称:综合安全

发布于 2025-01-04 18:32:02 字数 424 浏览 0 评论 0原文

大家好,当我尝试从 App.config 文件检索连接时,我收到指定的错误。

我的 App.Config 如下

<add name="Conn" 
     connectionString="Data Source=SYSTEM19\SQLEXPRESS;Initial Catalog=Dora;Integrated Security=True" 
     providerName="System.Data.SqlClient" />`

在这行代码中我收到提到的错误任何人都可以帮助我

dataAdapter = new MySqlDataAdapter(selectCommand, MyConnectionString);

Hi all I am getting the error as specified when I am trying to retrieve the connection from App.config file.

My App.Config is as follows

<add name="Conn" 
     connectionString="Data Source=SYSTEM19\SQLEXPRESS;Initial Catalog=Dora;Integrated Security=True" 
     providerName="System.Data.SqlClient" />`

At this line of code I am getting the error mentioned can any one help me

dataAdapter = new MySqlDataAdapter(selectCommand, MyConnectionString);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

懷念過去 2025-01-11 18:32:02

MySQL 连接字符串

集成安全性对于 MySQL 连接字符串来说不是有效的关键字

MySQL Connection String

Integrated Security is not valid keyword for MySQL connection strings

爱殇璃 2025-01-11 18:32:02

我遇到这个问题是因为我缺少 Initial Catalog= 位!

I had this issue because I was missing the Initial Catalog= bit!

计㈡愣 2025-01-11 18:32:02

我遇到这个问题是因为“安全”一词位于下一行!

I had this issue because the word Security was on the next line!

一抹微笑 2025-01-11 18:32:02

就我而言,在我从另一个项目复制并粘贴连接字符串后,Visual Studio 2022 会自动在 IntegratedSecurity 之间添加逗号。删除逗号后,一切正常。

In my case, Visual Studio 2022 automatically added a comma between Integrated and Security after I copied and pasted the connection string from another project. After I removed the comma, everything is working fine.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文