2012-02-03 40 views
1

我试图绕过Flyway issue 156see here)的方法之一就是依靠Java迁移。为此,我写了一个基于the sample的数据库,以建立数据库的初始状态。我怎样才能让Flyway Java Migration仅仅执行一个sql脚本?

首先,我抢的数据库(MySQL的5.5)的初始状态,并把它变成一个文本文件进行迁移阅读:

mysqldump -u root -p myProject > db/migration/_V1__baseline.sql 

然后,我写一个Java迁移到该状态装入当它第一次创建一个新的数据库:

package com.myCompany.myProject.migration; 
import com.googlecode.flyway.core.migration.java.JavaMigration; 
import org.springframework.jdbc.core.JdbcTemplate; 
import java.io.BufferedReader; 
import java.io.FileReader; 
import java.io.IOException; 
import org.springframework.dao.DataAccessException; 

public class V1__baseline implements JavaMigration { 
    @Override 
    public void migrate(JdbcTemplate jdbcTemplate) throws Exception { 
     BufferedReader stream = null; 
     String sqlCode = ""; 
     String line; 
     try { 
      stream = new BufferedReader(new FileReader("db/migration/_V1__baseline.sql")); 
      while ((line = stream.readLine()) != null) { 
       sqlCode += line + '\n'; 
      } 
      jdbcTemplate.execute(sqlCode); 
     }catch(IOException e){ 
      System.out.println("File error: "+ e.getMessage()); 
     }catch(DataAccessException e){ 
      System.out.println("Data access exception: "+ e.getMessage()); 
     }catch(Exception e){ 
      System.out.println("Generic Exception: "+ e.getMessage()); 
     } finally { 
      if (stream != null) { 
       stream.close(); 
      } 
     } 
    } 
} 

然后,尝试一下:

mvn compile flyway:clean flyway:init flyway:migrate 

而且结果:

[INFO] --- flyway-maven-plugin:1.5:migrate (default-cli) @ elysium-unity-server --- 
[WARNING] Unable to find path for sql migrations: db/migration 
[WARNING] Unable to find path for sql migrations: db/migration 
[WARNING] Unable to find path for sql migrations: db/migration 
[INFO] Validated 0 migrations (mode: ALL) (execution time 00:00.002s) 
[INFO] Current schema version: 0 
[INFO] Migrating to version 1 
Data access exception: StatementCallback; bad SQL grammar [-- MySQL dump 10.13 Distrib 5.5.19, for Win64 (x86) 
-- 
-- Host: localhost Database: myProject 
-- ------------------------------------------------------ 
-- Server version  5.5.19 

/*!40101 SET @[email protected]@CHARACTER_SET_CLIENT */; 
/*!40101 SET @[email protected]@CHARACTER_SET_RESULTS */; 
/*!40101 SET @[email protected]@COLLATION_CONNECTION */; 
/*!40101 SET NAMES utf8 */; 
/*!40103 SET @[email protected]@TIME_ZONE */; 
... lots more lines ... 
/*!40111 SET [email protected]_SQL_NOTES */; 

-- Dump completed on 2012-02-03 12:51:33 
]; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SET @[email protected]@CHARACTER_SET_RESULTS */; 
/*!40101 SET @OLD_COL' at line 8 

所以它看起来像mysql语法错误。但是,语法是由我试图提供给它的同一个数据库生成的。所以我猜测中间一定会有东西挡在路上。有什么建议么?我想了解为什么这种确切的方法不起作用,但我也会感激地接受其他方式完成my ultimate goal的建议。

+0

也许有'''字符需要转义? – 2012-02-13 13:00:07

回答

0

看看你的其他问题的答案。

Flyway SQL解析器应该能够处理这种类型的输入没有问题。

+0

谢谢。我仍然不知道为什么java版本不能正常工作,但[其他方式](http://stackoverflow.com/问题/ 9134786/how-do-i-best-work-around-flyway-issue-156/9266070#9266070)现在工作,所以我很高兴。 – Cheesington 2012-02-15 01:30:20

相关问题