我正在尝试编写一些代码来读取SQL文件(由CREATE TABLE
分隔的多个;
语句)并执行所有语句。
在纯JDBC中,我可以写:
String sqlQuery = "CREATE TABLE A (...); CREATE TABLE B (...);"
java.sql.Connection connection = ...;
Statement statement = connection.createStatement();
statement.executeUpdate(sqlQuery);
statement.close();
并且两个(所有)语句都已执行。当我尝试在Spring JdbcTemplate中执行相同操作时,只执行第一个语句!
String sqlQuery = "CREATE TABLE A (...); CREATE TABLE B (...);"
org.springframework.jdbc.core.JdbcTemplate jdbcTemplate = new JdbcTemplate(dataSource);
jdbcTemplate.execute(sqlQuery);
有没有办法执行多个语句?谷歌搜索时,我发现只有“手动分割sqlQuery ;
”这样的解决方案当然没用(这需要更多的解析)。
答案 0 :(得分:14)
也许Spring的ScriptUtils对你的情况有用。特别是executeSqlScript
方法。
请注意,DEFAULT_STATEMENT_SEPARATOR
的默认值为';'
(请参阅Constant Field Values)
答案 1 :(得分:11)
我用这种方式解决了这个问题:
public void createDefaultDB(DataSource dataSource) {
Resource resource = new ClassPathResource("CreateDefaultDB.sql");
ResourceDatabasePopulator databasePopulator = new ResourceDatabasePopulator(resource);
databasePopulator.execute(dataSource);
}
答案 2 :(得分:4)
试试吧
public void executeSqlScript(Connection connection,StringBuffer sql)throws SQLException{
try {
connection.setAutoCommit(false);//设置为手工提交模式
ScriptUtils.executeSqlScript(connection, new ByteArrayResource(sql.toString().getBytes()));
connection.commit();//提交事务
} catch (SQLException e) {
connection.rollback();
}finally{
connection.close();
}
}
答案 3 :(得分:0)
我们也可以通过SQLExec实现。下面的代码对我有用。
import java.io.File;
import org.apache.tools.ant.Project;
import org.apache.tools.ant.taskdefs.SQLExec;
public class Test {
public static void main(String[] args) {
Test t = new Test();
t.executeSql("");
}
private void executeSql(String sqlFilePath) {
final class SqlExecuter extends SQLExec {
public SqlExecuter() {
Project project = new Project();
project.init();
setProject(project);
setTaskType("sql");
setTaskName("sql");
}
}
SqlExecuter executer = new SqlExecuter();
executer.setSrc(new File("test1.sql"));
executer.setDriver("org.postgresql.Driver");
executer.setPassword("postgres");
executer.setUserid("postgres");
executer.setUrl("jdbc:postgresql://localhost/test");
executer.execute();
}
}
答案 4 :(得分:0)
我正在为我的项目案例寻找类似的选项,然后我偶然发现了以下https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/jdbc/datasource/init/ResourceDatabasePopulator.html
提供的 Stackoverflow 示例非常简洁,如果您希望 Spring 代表您处理样板 sql 处理 https://stackoverflow.com/a/23036217/1958683