RE: jdbc connection list

2002-11-18 Thread Darya Chernikhova
would involve changing all your > servlets/jsps, to get connections the new way, > > > > Steve. > > -Original Message- > From: Ralph Einfeldt [mailto:[EMAIL PROTECTED]] > Sent: 05 June 2002 15:47 > To: Tomcat Users List > Subject: AW: jdbc connection li

RE: jdbc connection list

2002-06-05 Thread Steven Wood
[mailto:[EMAIL PROTECTED]] Sent: 05 June 2002 15:47 To: Tomcat Users List Subject: AW: jdbc connection list For connection you are out of luck. There is nothing like a common event model for connections or connection pools. (No driver or pool that I know has a feature like this). One solution

Re: jdbc connection list

2002-06-05 Thread anette mysel
PLEASE REMOVE NE FROM YOUR MAILING LIST. I DO NOT KNOW WHO YOU ARE. THANK YOU... - Original Message - From: "Darya Chernikhova" <[EMAIL PROTECTED]> To: "Tomcat Users List" <[EMAIL PROTECTED]> Sent: Wednesday, June 05, 2002 9:33 AM Subject: Re: jdbc conn

AW: jdbc connection list

2002-06-05 Thread Ralph Einfeldt
ystem views or stored procedures. (E.g. Oracle) but that's not portable. > -Ursprüngliche Nachricht- > Von: Darya Chernikhova [mailto:[EMAIL PROTECTED]] > Gesendet: Mittwoch, 5. Juni 2002 16:34 > An: Tomcat Users List > Betreff: Re: jdbc connection list > I'd lik

Re: jdbc connection list

2002-06-05 Thread Darya Chernikhova
I need to know what to listen to. What events, to which objects, does the Connection send when it gets initiated? Thanks, Darya. On Tue, 4 Jun 2002, Phillip Morelock wrote: > also called the Observer pattern. > > > On 6/4/02 4:07 PM, "Phillip Morelock" <[EMAIL PROTECTED]> > wrote: > > > Use t

Re: jdbc connection list

2002-06-04 Thread Phillip Morelock
also called the Observer pattern. On 6/4/02 4:07 PM, "Phillip Morelock" <[EMAIL PROTECTED]> wrote: > Use the Listener design pattern. You'll probably write an interface, > implement it, and then register listeners with classes that will inform them > of events. > > The java kit already has so

Re: jdbc connection list

2002-06-04 Thread Phillip Morelock
Use the Listener design pattern. You'll probably write an interface, implement it, and then register listeners with classes that will inform them of events. The java kit already has some of this pattern: HttpSessionBindingListener for example. The pattern is also prevalent throughout Swing and

Re: jdbc connection list

2002-06-04 Thread Darya Chernikhova
Sorry if this is a copy. I got an error message from my mail server, after I sent this email, so I'm trying again. Darya On Tue, 4 Jun 2002, Darya Chernikhova wrote: > > Hi all, > > I'd like to write a bean that would keep track of all of the jdbc > connections that users make. > > So, say that

jdbc connection list

2002-06-04 Thread Darya Chernikhova
Hi all, I'd like to write a bean that would keep track of all of the jdbc connections that users make. So, say that I have 2 applications registered on tomcat -- appA and appB. And, say that there are 5 servlets or jsp pages per application -- appA/serv1, appA/serv2, ..., appB/serv5 . And, eac