Issue
I need to make a backup of a certian database (including tables and data on tables) which is stored on phpmyAdmin using java code. Any help? Thanks in advance
Solution
- phpMyAdmin is used to maintain MySQL Databases via a Web-Browser, implemented in PHP (c.f. https://www.phpmyadmin.net/).
- If you want to access a MySQL DB from Java you can try to use JDBC (https://dev.mysql.com/downloads/connector/j/).
If you really, really want to do your backup via phpMyAdmin you could try to write a Selenium-Test testing your phpMyAdmin instance (http://www.seleniumhq.org/). But I guess, there are easier ways to get the job done.
Answered By - Claas Wilke