我试图在 liquibase 1.9.5 中运行一个非常简单的示例(见最后)。
当我跑
liquibase --changeLogFile=test_sample.xml update
我收到此错误消息。
迁移失败:ORA-03115:不支持的网络数据类型或表示
我正在使用 oracle 10g XE 10.2.0.1。据我了解(和谷歌搜索),这是一个错误,涉及将查询传递给准备好的语句的执行方法,或者“某事”(猜测我的 oracle 驱动程序)已被弃用。
我的属性文件如下所示:
#liquibase.properties
driver: oracle.jdbc.driver.OracleDriver
classpath: ./classes12.zip
url: jdbc:oracle:thin:@localhost:1521:XE
username: lb_dev
password: lb_dev
有什么想法吗?
提前致谢。
文件 test_sample.xml
<databaseChangeLog
xmlns="http://www.liquibase.org/xml/ns/dbchangelog/1.6"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog/1.6
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-1.6.xsd">
<changeSet id="1" author="bob">
<createTable tableName="department">
<column name="id" type="int">
<constraints primaryKey="true" nullable="false"/>
</column>
<column name="name" type="varchar(50)">
<constraints nullable="false"/>
</column>
<column name="active" type="boolean" defaultValue="1"/>
</createTable>
</changeSet>
</databaseChangeLog>