有哪些可用的java API来备份mysql数据库
有没有java的API来备份mysql数据库?
Are there any API for java to backup mysql databases?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有java的API来备份mysql数据库?
Are there any API for java to backup mysql databases?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您可以使用任何 Java API(通过 JDBC/JConnector)来备份 MySQL 数据库。但除非有特殊原因,我强烈建议您使用 MySQL 特定工具(例如 mysqldump)来创建备份。
You can use any Java API (through JDBC/JConnector) to backup a MySQL database. But unless there is a specific reason to do, I strongly suggest that you use MySQL specific tools (e.g. mysqldump) to create your backups.
您可以使用 Runtime.exec(String) 运行 mysqldump 命令
You can use
Runtime.exec(String)
to runmysqldump
command不确定您是否正在尝试构建一个可以执行此操作的工具。我建议你重新考虑它,因为 mysql 中有现成的工具可以为你完成这项工作。如果您正在寻找自动化备份过程,那么我建议使用 unix 脚本< /a>.
Not sure if you are trying build a tool which would do this. I would suggest you to reconsider it as there are readily available tool from mysql which does this job for you. If you are looking for automating the backup process, then I would recommend using the unix script.