Re: how to explixitly close database connections.

2002-03-11 Thread Moi
In the end of Javaservlet script you should close database using close(),because Javaservlet needs manual closing database connection. Here are the Example: con=DriverManager.getConnection("jdbc:postgresql://..."); ... ... ... ... con.close(); Hari Yellina wrote: > Hi All, > > We ar

how to explixitly close database connections.

2002-03-11 Thread Hari Yellina
Hi All, We are using Tomcat 3.2.4 and Postgresql for Point of Sale application. After few days of working like 7 days. There are few idle postgesql database connections running in back ground and my application freezes once it reaches maximum limit of connection. How to explicitly kill the conn