I am having multiple mysql databases running on multiple servers.In hsql database we can start the server or stop the server using java programming.I am going to use any dat
Try this in windows machine:
START
Process process = Runtime.getRuntime().exec("net START MySQL");
STOP
Process process = Runtime.getRuntime().exec("net STOP MySQL");