I have a .Net application connecting oracle database and want to enter more than 4000 character to a column in DB.
I tried with CLOB still getting
input string too long.
I am using SQL query to enter data any help.
I have a .Net application connecting oracle database and want to enter more than 4000 character to a column in DB.
I tried with CLOB still getting
input string too long.
I am using SQL query to enter data any help.
Simplest way is using bind variable. Here is basic example:
That's not true.
From documentation,
For example,
Starting with Oracle 12c, the maximum size of VARCHAR2 is now extended to 32767 bytes. By default the parameter MAX_STRING_SIZE is STANDARD which can hold up to 4000 bytes.
You could alter the parameter value to EXTENDED and increase the maximum value of VARCHAR2 to 32767 bytes.
There are mainly two important steps: