嵌入式Mysql(libmysql.dll)和C# &网络
我正在尝试使用 .net 框架连接到 mysql 数据库。我搜索了 c# 桌面应用程序或 asp.net 的示例,但没有结果。任何人都可以解释如何成功连接到嵌入式 mysql 数据库。
我在这里找到了一个库 sourceforge.net/mysqldrivercs 但不想使用任何额外的代码如果需要的话。
I'm trying to connect to a mysql database with .net framework. I've searched for an example for c# desktop app or asp.net but no result. Can anyone explain how to connect successfully to an embedded mysql database.
I've found a library here sourceforge.net/mysqldrivercs but don't want to use any extra code if necessary.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将需要使用某种连接器来连接到 MySql,就像您想要连接到 Sql Server 数据库一样,唯一的区别是 Sql Server 的程序集已内置到 .net 框架中。
请查看以下链接,例如有关连接到 MySql 的链接。
CodeProject 示例
示例 2
You will need to use some kind of connector to conect to MySql, just like you would if you wanted to connect to a Sql server database, only difference is that the assemblies for Sql Server have been built into the .net framework.
Take a look at the following links for example on connecting to MySql.
CodeProject Example
Example 2