在C#中转储一些mysql表(结构+数据)
如何将 mysql 数据库中的一些表转储到 C# 中的 sql 文件中? 有没有一个类可以做到这一点?
更新:只是想提一下不要使用 mysqldump,因为这个应用程序将安装在许多计算机上,并且 mysql 文件夹可能位于不同的位置。
How can I dump some of the tables from my mysql database into an sql file in C#?
Is there a class which does this?
UPDATE: just wanted to mention to DO NOT USE mysqldump, because this application will be installed on many computers and the mysql folder could be on different places.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Dotconnect for mysql 可能有这个功能,但我不知道免费版本。
否则,您可以调用 mysqldump 实用程序并执行类似的操作这:
Dotconnect for mysql might have this feature, but I don't know about the free version.
Otherwise you could just invoke the mysqldump utility and do something like this:
我最后通过talbe建立了sql字符串表。
I built up the sql string table by talbe in the end.