在C#中转储一些mysql表(结构+数据)

发布于 2024-09-16 21:17:36 字数 132 浏览 6 评论 0原文

如何将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

痞味浪人 2024-09-23 21:17:36

Dotconnect for mysql 可能有这个功能,但我不知道免费版本。

否则,您可以调用 mysqldump 实用程序并执行类似的操作这:

public void DumpMySQLDb(string user, string password, string database, string outputFile) {
  var commandLine = string.Format("mysqldump --user={1}--password={2} --hex-blob --databases {3}",
     user, password, database)
  var process = new Process();
  process.StartInfo = new ProcessStartInfo {
      FileName = "cmd",
      Arguments = string.Format( "/c \"{0}\" > {1}", commandLine, outputFile )
  };
  process.Start();
}

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:

public void DumpMySQLDb(string user, string password, string database, string outputFile) {
  var commandLine = string.Format("mysqldump --user={1}--password={2} --hex-blob --databases {3}",
     user, password, database)
  var process = new Process();
  process.StartInfo = new ProcessStartInfo {
      FileName = "cmd",
      Arguments = string.Format( "/c \"{0}\" > {1}", commandLine, outputFile )
  };
  process.Start();
}
甜扑 2024-09-23 21:17:36

我最后通过talbe建立了sql字符串表。

I built up the sql string table by talbe in the end.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文