I need to insert a CLOB in a table.
Base on the Forum information
- <changeSet id="MyChangeSet" author="Me" context="ALL">
- <comment>Create a new record for a CLOB</comment>
- <insert tableName="XML">
- <column name="ID" value="MyID" />
- <column name="TYPE" value="IMAGE" />
- <column name="ENTITY" valueClob="clob/Image.png" type="CLOB" />
- </insert>
- </changeSet>
- [INFO] --- liquibase-maven-plugin:2.0.5:update (default-cli) @ ForHrm-DAO ---
- [INFO] ------------------------------------------------------------------------
- [INFO] Executing on Database: jdbc:oracle:thin:@LOCALHOST:1521:FCTST
- INFO 5/12/13 18:44:liquibase: Successfully acquired change log lock
- SEVERE 5/12/13 18:44:liquibase: cvc-complex-type.3.2.2 : L'attribut 'valueClob' n'est pas autorisÚ dans l'ÚlÚment 'column'.
Any idea ?
\T,