Visual Studio Express 2008 可以连接到 MySQL 吗?
我已安装 MySQL .NET 连接器,但它未显示在 Visual Studio Express Edition 中连接的数据源选项中。
这可能吗?如果是这样,我可以采取什么步骤?
I've installed MySQL .NET connector but it's not shown in data source options to connect in Visual Studio Express Edition.
Is this possible? If so, what steps can I take?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
VB Express 中仅显示两个用于数据连接的选项(这是故意的); Access 和 MS SQL。您将需要手动设置连接或升级 Visual Studio。这是 VB.Net 2005 Express 和 MySQL 的旧教程,但遵循的步骤应该是相同的 (VBMySQLTutorial)。
There are only two options shown in VB Express for data connections (this is intentional); Access and MS SQL. You will need to manually setup the connections or upgrade Visual Studio. Here is an older tutorial for VB.Net 2005 Express and MySQL, but the steps followed should be the same (VBMySQLTutorial).
您实际上不需要连接到 MySQL 的工具。您只需编写 VB.NET 代码即可使用
MySqlCommand
和MySqlConnection
对象。You won't actually need the tooling to connect to MySQL. You can simply write your VB.NET Code to use
MySqlCommand
andMySqlConnection
objects.