Package com.kylin.cluster.tools.h2

Source Code of com.kylin.cluster.tools.h2.ToolsWrapper

package com.kylin.cluster.tools.h2;

import org.h2.tools.Server;

public class ToolsWrapper {


  public static void main(String[] args) {
   
    try {
      // start h2 in memory database
      Server server = Server.createWebServer(args);
      server.start();
      System.out.println("Start H2... " + server.getStatus());
    } catch (Throwable t) {
      throw new RuntimeException("Could not start H2 server", t);
    }
  }

}
TOP

Related Classes of com.kylin.cluster.tools.h2.ToolsWrapper

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.