[PHP] 2 x DB connections at once

2004-01-23 Thread Donald Tyler
guess they were really the same connection even though they were two separate private variables in different objects. Thanks for your help -Original Message- From: Luke [mailto:[EMAIL PROTECTED] Sent: Thursday, January 22, 2004 4:22 PM To: Donald Tyler Subject: Re: [PHP] 2 x DB connections a

Re: [PHP] 2 x DB connections at once

2004-01-22 Thread Justin Patrin
Thursday, January 22, 2004 3:08 PM To: [EMAIL PROTECTED] Subject: [PHP] 2 x DB connections at once I thought this was possible, but it doesn't seem to be working: I have a class, that has a private variable called $this->Connection, which is a Database Connection pointer to a MySQL data

Re: [PHP] 2 x DB connections at once

2004-01-22 Thread Luke
the DB for one objects connection pointer, the other objects connection pointer ALSO changes DB. Is it not possible to have two completely separate DB connections active at the same time? -Original Message- From: Donald Tyler [mailto:[EMAIL PROTECTED] Sent: Thursday, January 22, 2004

RE: [PHP] 2 x DB connections at once

2004-01-22 Thread Donald Tyler
to have two completely separate DB connections active at the same time? -Original Message- From: Donald Tyler [mailto:[EMAIL PROTECTED] Sent: Thursday, January 22, 2004 3:08 PM To: [EMAIL PROTECTED] Subject: [PHP] 2 x DB connections at once I thought this was possible, but it doesn't

[PHP] 2 x DB connections at once

2004-01-22 Thread Donald Tyler
I thought this was possible, but it doesn't seem to be working: I have a class, that has a private variable called $this->Connection, which is a Database Connection pointer to a MySQL database. During the lifetime of the Class, it uses the connection multiple times without a problem. The class al