需要关于这个非常奇怪的错误的建议

发布于 2025-01-08 06:44:59 字数 356 浏览 0 评论 0原文

我试图通过以下方式建立与数据库的连接:

Dim sqCon As SqlClient.SqlConnection("Data Source=.\SQLEXPRESS;Database=MegaDatabase;Integrated_Security=SSPI")

问题仅出现在这一行,它告诉我:

Array bounds cannot appear in type specifiers

尽管我使用相同的格式,但同样的问题不会出现在我的任何其他项目中。

我需要有人告诉我这到底出了什么问题以及我该如何解决这个问题。

感谢您的阅读。

I am trying to establish connection to a database through:

Dim sqCon As SqlClient.SqlConnection("Data Source=.\SQLEXPRESS;Database=MegaDatabase;Integrated_Security=SSPI")

The problem is only on this line where it tells me that:

Array bounds cannot appear in type specifiers

The same problem does NOT appear in any of my other projects though I use this same format.

I need someone to tell me what exactly is wrong with this and how may I solve this.

Thanks for reading.

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

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

发布评论

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

评论(2

天涯沦落人 2025-01-15 06:44:59

该(原始版本,现已更改)看起来不像有效语法。没有开头 " 字符,并且末尾有太多 ) 字符。

但是,即使进行了修复,我认为您可能想要做的就是 dim 将其作为变量,如下所示:

Dim sqCon As New SqlConnection ("DataSource=...")

That (original version, now changed) doesn't look anything like valid syntax. There's no opening " character and there's too many ) characters at the end.

However, even with the fixes, I think what you probably wanted to do was to dim it as a new variable, something like:

Dim sqCon As New SqlConnection ("DataSource=...")
梦回梦里 2025-01-15 06:44:59

使用 New 关键字

Dim sqCon As New SqlClient.SqlConnection("Data Source=.\SQLEXPRESS;Database=MegaDatabase;Integrated_Security=SSPI")

use the New keyword

Dim sqCon As New SqlClient.SqlConnection("Data Source=.\SQLEXPRESS;Database=MegaDatabase;Integrated_Security=SSPI")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文