textarea to CLOB/BLOB (not an obvious question at all)
I am currently working on a problem whereby a form on the clientside (HTML page) POSTs the contents of a textarea to my servlet. The servlet then stores the content of the textarea into a BLOB. Quite simple sounding at first ... it seems that one would be required to directly process the ServletInputStream and parse the data.
I have been churning over previous posts in these forums for about 2days now, over the last few years the question has been posted at least five times with no satisfactory answer.
(using getParameter() string cause practical problems as they would need to be huge and servers often raise exceptions at a certain length/heap usage). How would one process incredibly long textarea contents into a BLOB via JDBC?
Bamkin
please see:
http://forum.java.sun.com/thread.jspa?threadID=5145362&messageID=9540826
http://forum.java.sun.com/thread.jspa?threadID=575684&messageID=2878235
http://forum.java.sun.com/thread.jspa?threadID=556900&messageID=2732246
http://forum.java.sun.com/thread.jspa?threadID=5145694
http://forum.java.sun.com/thread.jspa?threadID=575684 (oracle specific)

