我实际上在命令行中使用 Windows 上的 Liquibase,并尝试创建一个表示两个数据库之间差异的 sql 脚本。不幸的是,我只得到 xml 文件作为回报。你能帮助我吗 ?
我的命令行:
liquidbase.bat
--driver=com.mysql.jdbc.Driver
--url=jdbc:mysql://localhost:3306/base1
--username=root
diffChangeLog
--referenceUrl=jdbc:mysql://localhost:3306/base2
--referenceUsername=root
> test.sql
我在其他论坛上看到过类似的问题,但他没有得到很好的答案(http://forum.liquibase.org/topic/convert-changelog-xml-file-into-sql-file)。我还看到了一些用于从 updateSQL cmd 获取 sql 文件的参数,但从未用于 diffChangeLog。
xml 反馈示例:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-2.0.xsd">
<changeSet author="user (generated)" id="1370443156612-1">
<createTable tableName="test">
<column name="a" type="INT"/>
</createTable>
</changeSet>
<changeSet author="user (generated)" id="1370443156612-2">
<addColumn tableName="articles">
<column name="date_debut" type="TEXT">
<constraints nullable="false"/>
</column>
</addColumn>
</changeSet>
提前谢谢。