在哪里可以找到有关使用 MySQL 设置 ASP.NET Web 应用程序的信息?
我对使用 MySQL 在 ASP.NET 中开发 Web 应用程序感兴趣,这是否很难做到/是否可以轻松地与 Visual Studio 2010 集成?我真的很喜欢将 .NET 平台用于 Web 应用程序,但我更喜欢使用 MySQL 而不是 Microsoft SQL Server。有人可以阐明/指导我找到好的链接吗?
抱歉,如果这是一个荒谬的问题,我是 Web 应用程序和 .NET 框架的新手。
I am interested in developing web applications in ASP.NET using MySQL, is this something difficult to do/does it easily integrate with Visual Studio 2010? I really like using the .NET platform for web applications but I would prefer to use MySQL over Microsoft SQL Server. Can somebody shed some light/direct me to good links?
Sorry if this is a ridiculous question, I'm new to web applications and the .NET framework.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试其中一些链接来开始
将 MySQL 与 ASP 结合使用。 NET
从 ASP.NET 连接到 MySQL 数据库
将 MySQL 与 ASP.NET 结合使用
编辑 :看起来你必须这样做使用 ODBC 连接。您需要在您的 PC 上设置 ODBC 连接您部署该应用程序。这是我在连接到使用 ODBC 连接的 Informix 数据库时使用的示例。您需要首先安装 MySql 的驱动程序。
Informix 数据库
DataAccess 方法的 Web.config 连接字符串
Try some of these links to start
Using MySQL with ASP.NET
Connect to MySQL database from ASP.NET
Using MySQL with ASP.NET
EDIT : Looks like you will have to use an ODBC connection. You'll need to set up an ODBC connection on your PC and wherever you deploy the app. This is an example that I've used when connecting to an Informix database, which used an ODBC connection. You'll need to install the drivers for MySql first.
Web.config connection string for an Informix database
DataAccess method
您可以将
Mysql.Data
Nuget 包添加到您的项目中,然后只需更改 mysql 服务器的连接字符串,它就会为您工作。You can Add
Mysql.Data
Nuget Package to your project and then just change the connection string for mysql server and it will work for you.