vikram bollu

Greenhorn
+ Follow
since Sep 07, 2009
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by vikram bollu

Hi,

Thanks for your reply, I know about the GET. But when I am trying with POST with huge data it is giving OutofMemory exception so I used session.
I am using weblogic. So, do you think we can set max size for POST at server side (any server like tomcat as you said), if yes could you tell me how to set for weblogic
11 years ago
what is the maximum allowable length for a hidden field if the form method is POST?
11 years ago
Move FindAuthor class to proper package and import it to JSP page
12 years ago
JSP
It creates only 2 objects as java creates object in memory for arrays just like other objects.
14 years ago
thanks for your reply,

i will check for null and close it in the finally block.

Balu Sadhasivam wrote:
close all your preparedStatement at the end of loop.



Thanks for you reply,

Actually i had closed the connection in the finally block , is it required to closed the preparedstatement saparately??

Actually i am using one connection, and im adding all statements to batch ( statement.addBatch(); ).
For every 1000 statements im executing batach. If something happens wrong thn it should rollback everything.
I am trying to insert more than 1 lac records, and it is inserting successfully. but the below exception is displaying...

ora-0100 maximum number of cursors exceeds

wht might be the reason for this and how to solve this.