如何通过ADO.NET导入mysql源文件

发布于 2024-09-27 11:20:54 字数 102 浏览 0 评论 0原文

我正在编写一个应用程序,它应该获取从 mysqldump 生成的 sql 文件并将其导入到 mysql 数据库中。有没有办法从 ADO.NET 执行此操作,还是需要使用 mysql cli?

I'm writing an app which should take a sql file generated from mysqldump and import it into a mysql database. Is there a way to do this from ADO.NET or do I need to use the mysql cli?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

云朵有点甜 2024-10-04 11:20:54

您应该能够从 ADO.NET 执行此操作,方法是将文件读入字符串并针对数据库执行该字符串(假设您具有适用于 mysql 的 ADO.NET 连接器)。

我不知道这样做会给你带来什么好处,如果你不太了解输入,你就是在自找麻烦,但这应该是可能的。

You should be able to do this from ADO.NET by reading the file into a string and executing the string against the database, assuming that you have the ADO.NET connector for mysql.

I don't know what advantage you gain by doing that, and if you don't know the input well, you're asking for trouble, but it should be possible.

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