I have currently a clob column in oracle db where i am storing the value in base64 format, how this can be done using liquibase
I tried as given below
<insert tableName="IMAGES">
<column name="IMAGE" valueClobFile="myimage.png" type="CLOB" />
even though liquibase inserted the value, it is not storing as base64.
FYI : I don't want to use BLOB, I am using CLOB to store the data in base64