Re: JDBC connections

2004-08-27 Thread John Villar
You need a JDBC driver for your selected DBMS Nelson, Jerry W, Contractor 146CF, SCB escribió: What do I need to download to establish/create a JDBC connection? //SIGNED// Jerry Nelson -- John Villar Gerente de Proyectos Computadores Flor Hard Soft 2058 C.A. www.florhard.com

RE: JDBC connections

2004-08-27 Thread Nelson, Jerry W, Contractor 146CF, SCB
That would Microsoft Access and Microsoft SQL. //SIGNED// Jerry Nelson PS, I can't receive attachments unless you rename them. -Original Message- From: John Villar [mailto:[EMAIL PROTECTED] Sent: Friday, August 27, 2004 1:39 PM To: Tomcat Users List Subject: Re: JDBC connections You

RE: JDBC connections

2004-08-27 Thread Robert Harper
Users List' Subject: RE: JDBC connections That would Microsoft Access and Microsoft SQL. //SIGNED// Jerry Nelson PS, I can't receive attachments unless you rename them. -Original Message- From: John Villar [mailto:[EMAIL PROTECTED] Sent: Friday, August 27, 2004 1:39 PM

Re: JDBC connections

2004-08-27 Thread John Villar
: That would Microsoft Access and Microsoft SQL. //SIGNED// Jerry Nelson PS, I can't receive attachments unless you rename them. -Original Message- From: John Villar [mailto:[EMAIL PROTECTED] Sent: Friday, August 27, 2004 1:39 PM To: Tomcat Users List Subject: Re: JDBC connections You need

Re: (JDBC Connections (was: Content Type)

2003-11-03 Thread Christopher Schultz
epyonne, What is Tomcat's limitation on multiple connection to database? Tomcat has no limit on DB connections. Unless you are using a Realm, Tomcat does not have any control over db connections. I have a simple servlet application that connects to Oracle database for data. Since it is a very

Re: JDBC Connections

2001-05-28 Thread sibendud
Hi, I feel its better to be used only when necessary and released as soon as possible. Best regards Sib Mathew Clark [EMAIL PROTECTED] on 05/28/2001 10:07:34 PM Please respond to [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: Subject: JDBC Connections Hi, We have implemented a simple

RE: JDBC Connections

2001-05-28 Thread Paulo J S Pereira
Mathew, It's been my experience to only use it when necessary and release it back to the pool when done. Otherwise, it is redundant to have a pool to being with. The pool's power comes in its management of available connections, if you minimize the available connections, the pool will try to

Re: JDBC Connections

2001-05-28 Thread Gary Lawrence Murphy
s == sibendud [EMAIL PROTECTED] writes: s Hi, I feel its better to be used only when necessary and s released as soon as possible. Best regards Sib I would qualify this advice by adding only when using DB connection pools. The overhead in making and breaking DB connections is

RE: JDBC Connections

2001-03-16 Thread Christopher Kirk
Your problem is that your session object (holding the connection) is not being notified when the session is dropped. nb, when a user closes a browser is not when the session will be dropped. You'll have to add i) a time out to the session (say 10 minutes?) and ii) give the user a logout button