使用 ODBC 3.51 将 ASP Visual Web Developer 2008 连接到 MySQL
谁能告诉我如何将 ASP 连接到 MySQL 数据库.. 我已经在本地主机中安装了 MySQL, 通过ctrl面板中的数据源(ODBC)添加连接并测试连接成功。 现在我想在我的default.aspx页面上显示查询,以便我可以在MySQL中插入/更新/删除我的表数据。 有人可以帮助我吗?
Can Anybody tell me how to connect ASP to MySQL database..
I have already install MySQL in my localhost,
Add a connection through Data Source (ODBC) in ctrl panel and test connection succeed.
Now I want to show the query on my default.aspx page so that I can do the insert / update / delete my table data in MySQL.
Can anyone help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 .NET 中连接 MySQL 的推荐方法是使用 ADO.NET 连接器。您可以从此处下载它。它代表您需要在应用程序中引用的 .NET 程序集。这是一个示例代码:
The recommended way of connecting to MySQL in .NET is using ADO.NET connector. You could download it from here. It represents a .NET assembly that you need to reference in your application. And here's a sample code: