awferreira / c5-db-migration

Automatically exported from code.google.com/p/c5-db-migration
0 stars 0 forks source link

support for CLOB or BLOB #49

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Is there a way to insert CLOB or BLOB values with this tool?
Something like

--:content1=file://somelocation/file
--:content2=This is a large value ' with quites

insert into clob_table (id, content)
values (clob_table_sequense.nextval, :content1)

insert into clob_table (id, content)
values (clob_table_sequense.nextval, :content2)

This way a clob or a blob content can be read from an external file or defined 
inside script and be inserted into database.

Original issue reported on code.google.com by gutierre...@gmail.com on 7 Mar 2012 at 9:04