use of org.h2.server.TcpServer in project h2database by h2database.
the class TestTools method testManagementDb.
private void testManagementDb() throws SQLException {
int count = getSize(2, 10);
for (int i = 0; i < count; i++) {
Server tcpServer = Server.createTcpServer().start();
tcpServer.stop();
tcpServer = Server.createTcpServer("-tcpPassword", "abc").start();
tcpServer.stop();
}
}
Aggregations