Comment 0 for bug 1455670

Revision history for this message
Aruna Sadashiva (aruna-sadashiva) wrote :

Using JDBC T4 driver, insert into varchar column of colsize >32k fails with string overflow error.

To reproduce using Trafci :

SQL>CREATE TABLE TAB3 ( A INT, B VARCHAR(40000));
--- SQL operation complete.
SQL>prepare s from insert into tab3 values(?a, ?b);
--- SQL command prepared.
SQL>set param ?a 100;
SQL>set param ?b 'aaaZZ';
SQL>execute s;
*** ERROR[8402] A string overflow occurred during the evaluation of a character expression. [2015-05-15 21:27:01]