[
https://issues.apache.org/jira/browse/DERBY-2198?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Dag H. Wanvik updated DERBY-2198:
---------------------------------
Issue Type: Improvement (was: Test)
> Is it possible to insert a blob column into derby with sql instead of java?
> ---------------------------------------------------------------------------
>
> Key: DERBY-2198
> URL: https://issues.apache.org/jira/browse/DERBY-2198
> Project: Derby
> Issue Type: Improvement
> Components: SQL
> Environment: Linuxamd64
> Reporter: hai feng li
>
> I create below 2 tables:
> CREATE TABLE clob_tb1 (int_col INTEGER, clob_col CLOB(300));
> CREATE TABLE blob_tb1 (int_col INTEGER, blob_col BLOB(300));
> For the table with clob column, below insert can work well:
> insert into clob_tb1 values(1,'This is the first row of the clob table');
> For the table with blob column, below insert can not work:
> insert into blob_tb1 values
> (1,'0123456789abcdef0123456789abcdef0123456789abcedf');
> I also tried below styles:
> insert into blob_tb1 values
> (1,X'0123456789abcdef0123456789abcdef0123456789abcedf');
> It can not work either.
> Is there a way to do the insert with sql?
> Thanks!
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.