Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
If you know how to reproduce the problem, can you not just write some code that does so? – Anthony Grist Nov 30 '11 at 14:46
It doesnt happen always. It happened suddenly. If it fails always I can definitely reproduce. Now there is no guarantee – Shiv Nov 30 '11 at 14:48

2 Answers

Whether you should insert blobs at the end will depend on your database and the driver. To be honest, I would consider it a bug in the driver if it required the users to handle this implementation detail of the database, instead of the driver taking care of it.

share|improve this answer
up vote 0 down vote accepted

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.