Does Oracle's JDBC implementation support XMLType batch updates (via PreparedStatement.addBatch())?

link|improve this question

33% accept rate
feedback

2 Answers

I don't think Oracle types can tell how they're invoked, so the answer would be "yes".

The real question is: "What problem do you think that batch processing will introduce that real-time processing does not?"

link|improve this answer
I think bkent314 refers to submitting statements using JDBC's batching features (PreparedStatement.addBatch()) which is a big performance improvement over "single statement" execution – a_horse_with_no_name Dec 1 '10 at 18:43
Yes, a_horse_with_no_name, exactly! I should probably have put something to that effect in the question... – bkent314 Dec 1 '10 at 18:45
But that's the driver, not the type itself. I still don't see how that is affected by XMLType. – duffymo Dec 1 '10 at 18:55
I am only interested in what Oracle can do with regard to their JDBC implementation. I thought that was implied in my question, but obviously not. Sorry for the confusion. I am going to tweak the question a little. – bkent314 Dec 1 '10 at 19:01
feedback
up vote 0 down vote accepted

After a lot of research, it appears like a known limitation of Oracle's JDBC implementation is that it does not support "stream types" as bind variables (XMLType being a stream type).

According to their own documentation:

Oracle's implementation of standard update batching does not support stream types as bind values. (This is also true of Oracle update batching.) Any attempt to use stream types will result in an exception.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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