
June 8th, 2002, 06:49 PM
|
|
Junior Member
|
|
Join Date: May 2002
Location: Chicago
Posts: 3
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
doPost -> Java/Blob
I am trying to post a very large text area (needing a Blob) in mysql thru java.
I am using the post method in the form and the doPost method in HttpServlet.
I have tried using response.getParameter() but that only takes a string and is already not big enough to hold the field.
Right now I have gotten as far as using:
ServletInputStream servletStream = request.getInputStream();
(I dont even know if that will work)
But do not know where to go from there to getting the Blob stored into the database.
Any help is much appreciated!
|