Eric Spery

Greenhorn
+ Follow
since Nov 19, 2000
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 Eric Spery

I meant the connection used to obtain the ResultSet is required to be open.
e.
23 years ago
Additionally, while the ResultSet is open, the connection used to obtain the connection is required to be open. One solution is to build a Array(or)ArrayList(or)Vector of objects which mirror an individual row in the database. Iterate throught the ResultSet creating the individual row objects and adding them to the Array/ArrayList/Vector. Close your ResultSet and pass the Array/ArrayList/Vector.
e.
23 years ago
Right. I understand the source code you're compiling is working fine with the exception of the error you are discussing; however, the source code you have pasted into your note has other errors as well. I suspect something happened when you cut and paste this code into your mail. Could you repaste the code?
e.
23 years ago
Mr. Doer. The Class file you included has a number of other bugs preventing examination of the specific problem you mention. Did you accidentally post an older version of the file? Is there any way you can post a version which will produce the error you're seeing.
e.
23 years ago
V Srinivasan,
If you absolutely must validate your form on the client side, and it's been my experience that this can be extremely problematic, then you might want to try this old CGI trick. Add a hidden frame to your page, a zero-width/height frame. Use your client side JavaScript to post your form results to a servlet in this frame, and parse the results from your originating frame. It's a kludge, but it has its uses.
regards,
eric
23 years ago