in JSP , this is the code snippet to upload a file
in my struts action class, i am fetching it like,
i am trying to insert this file into oracle 10g using the following snippet.
(Pst means prepared statement)
My query is its working fine for the files with size less than 1 KB. but for for large file files its not working.
in DB, the column type is CLOB only.
Any body can help me out? thanks in advance
Code:
<li><html:file property="myFile" value="../img/buttons/browse_button.gif"> </html:file>
Code:
int fileSize = myFile.getFileSize(); byte[] fileData = myFile.getFileData();
Code:
pst.setBytes(3, b);
My query is its working fine for the files with size less than 1 KB. but for for large file files its not working.
in DB, the column type is CLOB only.
Any body can help me out? thanks in advance
Comment