On Fri, 15 Sep 2000, Andreas Tille wrote:
> On Thu, 14 Sep 2000, chris markiewicz wrote:
>
> > could this be a servlet/thread issue? i cannot tell from the code snippet,
> Solved. I really stupidly forgot an rs.next() :-(((.
>
> > but remember that variables in a servlet with class scope are
On Fri, 15 Sep 2000, Tim Kientzle wrote:
> The Statement variable here CANNOT be a class
> variable unless you're taking other steps to
> synchronize access. Otherwise, you risk having
> two different threads trying to manipulate the
> same statement object at the same time.
OK, I followed your