如何通过ADO.NET导入mysql源文件
我正在编写一个应用程序,它应该获取从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够从 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.