ローカル/埋め込み H2 DB に対して実行しようとしている次のクエリがあります。
String sql = "INSERT INTO animals ( animal_name, animal_type_id ) VALUES ( 'Dog', 34 )";
sqlExecutor.doSQL(sql);
// SQLExecutor.java
public class SQLExecutor {
private static final String DRIVER_CLASS = "org.h2.Driver";
private static final String CONNECTION_URL = "jdbc:h2:~/.myapp/data/myapp_db;DB_CLOSE_DELAY=-1";
private static final String DB_USER = "myuser";
private static final String DB_PASSWORD = "mypasswd";
public void doSQL(String sql) {
Connection connection = null;
PreparedStatement preppedStatement = null;
ConnectionPool connectionPool = new ConnectionPool(DRIVER_CLASS, CONNECTION_URL, DB_USER, DB_PASSWORD);
try {
connection = connectionPool.borrow();
preppedStatement = connection.prepareStatement(statement.getStatement());
preppedStatement.executeUpdate();
connection.commit();
} catch(Throwable throwable) {
logger.error(ExceptionUtils.getStackTrace(throwable));
throw new RuntimeException(throwable);
} finally {
// Close result set, prepped statement, return connection, etc.
}
}
}
これを実行すると、次の例外が発生します。
Exception in thread "main" java.lang.RuntimeException: org.h2.jdbc.JdbcSQLException: Table "ANIMALS" not found; SQL statement:
INSERT INTO animals ( animal_name, animal_type_id ) VALUES ( ?, ? ); [42102-173]
at net.myapp.core.SQLExecutor.doSQL(SQLExecutor.java:23)
の 23 行目SQLExecutor
は次のとおりです。
preppedStatement = connection.prepareStatement(statement.getStatement());
テーブルが存在しない場合、H2 はテーブルを作成すると言われましたが、テーブルが見つからないという理由について混乱しています。前もって感謝します!