Re: Connection timeout and pooling

2001-11-09 Thread TAKAHASHI, Tomohiro
Hi, What is your Pooing Utility? Generally, JDBC Connection is TCP/IP's Socket. After the Socket has been disconnected, we can not detect it by JDBC interface. So, we have to detect it before we return a Connection to the client. Please see a source of my util class for Pooling, below.

Re: Connection timeout and pooling

2001-11-09 Thread Christian Andersson
or sql/database I myself had to go for this last sollution.. hope it helps! /Christian Andersson - Original Message - From: "Sylvain Hamel" <[EMAIL PROTECTED]> To: "MySQL Mailing list" <[EMAIL PROTECTED]> Sent: Friday, November 09, 2001 3:50 PM Subject: Conn

Connection timeout and pooling

2001-11-09 Thread Sylvain Hamel
IDE : JBuilder 4 prof I am using pooling in order to optimize database access. When everybody leaves the office for the weekend all my connection timeout. This is expected except I would like my connection pool to be able to test connections before passing them back to the requester. Whats the be