Forgive me if this question is very vague
Some time back i faced this issue.
I used java and wrote a prepared statement INSERT into a table that had a few CLOBS. I inserted the records in the same order of the columns and got a SQL exception. The question is about this exception only.. I completely forgot what this exception is about
When i googled about the exception, the solution said CLOB’s must always be inserted at the end and not somewhere in the middle even though the column occurs somewhere in the middle of the table.
I did that and the issue vanished. Now does any expert know which exception i am talking about? Please forgive me if i am not giving enough information. This is what I have
To the benefit of everyone. This is the error for which my solution is outlined in my question.
, “Expanded non LONG bind data supplied after actual LONG or LOB column”
// *Cause: A Bind value of length potentially > 4000 bytes follows binding for
// LOB or LONG.
// *Action: Re-order the binds so that the LONG bind or LOB binds are all
// at the end of the bind list.