Package us.jyg.freshet.engine

Examples of us.jyg.freshet.engine.Configurator.shutdown()


         Class.forName("org.hsqldb.jdbcDriver").newInstance();
      Connection c = DriverManager.getConnection("jdbc:hsqldb:/tmp/db/freshet", "sa", "");
      c.createStatement().execute("SHUTDOWN COMPACT");
     
      Configurator cr = Configurator.getInstance();
      if (cr != null) cr.shutdown();
    } catch (SQLException sqlE) {
      log.debug(sqlE.getMessage(), sqlE);
    } catch (Exception e) {
      log.debug(e.getMessage(), e);
      }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.