如何关闭h2内存数据库?

时间:2014-11-14 02:16:34

标签: java database h2

  

如果最后一个连接关闭,内存数据库将关闭。

问题是如何强制关闭内存中的手册?

因为我需要测试连接何时关闭,或者DataSource不可用。在生产中,所有这些都会发生,我想模拟测试中的情况。

1 个答案:

答案 0 :(得分:2)

好的,TCP + MEM + EMBEDDED SERVER就是我想要的。

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Statement;
import org.h2.tools.Server;
import org.junit.Before;
import org.junit.Test;

public class H2ServerDownTest
{

    private Server server;

    @Before
    public void startServer() throws SQLException
    {
//        TCP server only.
        server = Server.createTcpServer("-tcp -webPort 8008 -tcpPort 9008 -properties null".split(" "));
        System.out.println("Start Server AT: " + server.getURL());
    }

    @Test(expected = SQLException.class)
    public void test() throws SQLException
    {
        server.start();
        Connection c = getConnection();
        Statement stmt = c.createStatement();
        stmt.execute("create table test(id int primary key, val varchar(100))");
        for (int i = 0; i < 1000; i++)
        {
            if (i == 500)
            {
                server.stop();
            }
            stmt.execute("insert into test values(" + i + ", 'values')");
        }
    }

    public Connection getConnection() throws SQLException
    {
        return DriverManager.getConnection("jdbc:h2:"+server.getURL()+"/mem:db", "sa", "");
    }

    @Test
    public void shutdownServer()
    {
        server.shutdown();
    }
}