Need to start the MySQL service from XAMPP with Java Code.(Without manually using the XAMPP console to start it).
I know you could use:
Process process = Runtime.getRuntime().exec("net START MySQL");
To start the MySQL in windows. But it seems XAMPP has MySQL as a subprogram (If I am right).
Any advice please?