Re: JDBC and servlet

From: "Nick Fankhauser" <nickf(at)ontko(dot)com>
To: "James Kelty" <jamesk(at)ashlandagency(dot)com>, <pgsql-admin(at)postgresql(dot)org>
Subject: Re: JDBC and servlet
Date: 2002-04-19 18:44:04
Message-ID: NEBBLAAHGLEEPCGOBHDGCEAPENAA.nickf@ontko.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

James-

We're using the Tomcat servlet engine & have had no similar problems, So I
think you can eliminate the JDBC driver from your list & focus on Resin or
something in your code.

We also quickly decided that we needed to be using a connection pool for a
web app. Opening & closing connections really drags your performance down
quickly!

Regards,

-Nick

--------------------------------------------------------------------------
Nick Fankhauser nickf(at)ontko(dot)com Phone 1.765.935.4283 Fax 1.765.962.9788
Ray Ontko & Co. Software Consulting Services http://www.ontko.com/

> -----Original Message-----
> From: pgsql-admin-owner(at)postgresql(dot)org
> [mailto:pgsql-admin-owner(at)postgresql(dot)org]On Behalf Of James Kelty
> Sent: Friday, April 19, 2002 1:30 PM
> To: pgsql-admin(at)postgresql(dot)org
> Subject: [ADMIN] JDBC and servlet
>
>
> We seem to be having an issue with the JDBC driver, Resin 2.0.5 servlet
> engine, and/or postgres 7.1.2.
>
> Basically what happens is this. In the Java Servlet code, the programmers
> are making an explicit close connection call to the database through the
> JDBC driver (As they should). Now! When the code us run from the command
> line, instead of through the servlet engine (Resin 2.0.5),
> everything works
> fine. The connection is made to the database, the SQL queries are run, the
> output is taken, and the connection to the DB is closed. But! When run
> through the servlet engine, the connection is never dropped, and we end up
> with these stale connections to the DB, and eventually, we cannot connect,
> since the older connections are never closed. Same code, same JVM, same
> database, but Resin sits in the middle. Resin isn't really doing anything
> other than passing the HTML output to Apache.
>
> I am also posting this to caucho.com incase it is a Resin issue, but if
> anyone has had this problem before, all help would be appreciated
> very much.
> Thank you!
>
> -James
>
> James Kelty
> Sr. Unix Systems Administrator
> Everbase Systems
> 541.488.0801
> jamesk(at)everbase(dot)net
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: Have you searched our list archives?
>
> http://archives.postgresql.org
>

In response to

Responses

  • Bad plan at 2002-04-19 20:54:40 from Brian McCane

Browse pgsql-admin by date

  From Date Subject
Next Message Brian McCane 2002-04-19 20:54:40 Bad plan
Previous Message James Kelty 2002-04-19 18:30:22 JDBC and servlet