我有一个带有大data.sql文件的项目,其中有近2000行插入语句。 这真是太糟了。使用此文件不是很好。大多数测试仅依赖这些插入语句中的5-20个。这就是为什么我要更改测试,以便在每个(测试)类中可以加载不同的sql文件的原因。这怎么可能?
@Before
public void beforeTest() throws SQLException {
Connection connection = DriverManager.getConnection(
"jdbc:h2:mem:PROJECT;MVCC=true;DB_CLOSE_DELAY=-1;INIT=RUNSCRIPT FROM 'classpath:init-h2.sql';MODE=Oracle;DB_CLOSE_ON_EXIT=FALSE", "sa", "");
Reader data = new StringReader("small.sql");
RunScript.execute(connection, data);
}
org.h2.jdbc.JdbcSQLException: Syntax error in SQL statement "SMALL[*].SQL "; expected "DELETE, DROP, DECLARE, DEALLOCATE, {"; SQL statement:
small.sql [42001-197]
这是Java 8的Spring Boot应用程序。
答案 0 :(得分:2)
您正在将small.sql传递给RunScript的execute方法。因为您正在使用StringReader。您必须使用FileReader。
Reader data = new FileReader("<pathToFile>/small.sql");
RunScript.execute(connection, data);