1 7 package com.genimen.djeneric.test; 8 9 import org.hsqldb.util.ShutdownServer; 10 11 import com.genimen.djeneric.util.DjLogger; 12 13 16 public class StopHypersonic 17 { 18 19 public static void main(String args[]) 20 { 21 22 System.out.println("About to shut down Hypersonic"); 23 try 24 { 25 Thread.sleep(2000); 28 } 29 catch (InterruptedException e) 30 { 31 DjLogger.log(e); 32 } 33 ShutdownServer.main(new String []{"-user", "sa", "-password", "", "-port", StartHypersonic.port, "-shutdownarg", 34 "COMPACT"}); 35 } 36 37 } | Popular Tags |