KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > h2 > samples > ShutdownServer


1 /*
2  * Copyright 2004-2006 H2 Group. Licensed under the H2 License, Version 1.0 (http://h2database.com/html/license.html).
3  * Initial Developer: H2 Group
4  */

5 package org.h2.samples;
6
7 public class ShutdownServer {
8     public static void main(String JavaDoc[] args) throws Exception JavaDoc {
9         org.h2.tools.Server.shutdownTcpServer("tcp://localhost:9094", "", false);
10      }
11 }
12
Popular Tags