Re: [PHP] db transactions across multiple pages...

2004-07-31 Thread Curt Zirzow
* Thus wrote bruce: > the method i described gives the user/app a potential way of > establsihing/maintaining/using the same connection thoughout the life of the > web app/session... > > with this approach, one could possible have the 'persistent' conection > handle to the db that i've been talkin

RE: [PHP] db transactions across multiple pages...

2004-07-31 Thread bruce
hich would then allow for transactional processing across multiple pages within a web app -Original Message- From: Curt Zirzow [mailto:[EMAIL PROTECTED] Sent: Saturday, July 31, 2004 8:59 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] db transactions across multiple pages... * Thus wrot

RE: [PHP] db transactions across multiple pages...

2004-07-31 Thread bruce
curt... the method i described allows one to essentially have/maintain persistent connections... -Original Message- From: Curt Zirzow [mailto:[EMAIL PROTECTED] Sent: Saturday, July 31, 2004 8:59 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] db transactions across multiple pages... * Thus

Re: [PHP] db transactions across multiple pages...

2004-07-31 Thread Curt Zirzow
* Thus wrote bruce: > yeah... > > i saw that write up. i've also inquired with bugs.mysql as to if/whether > this might be reinserted.. we'll see. You don't need persistant connections with the method you describe. The pool app simply manages multiple connections. Curt -- First, let me assur

Re: [PHP] db transactions across multiple pages...

2004-07-31 Thread Tularis
Hosting http://www.web-1hosting.net - Original Message - From: "bruce" <[EMAIL PROTECTED]> To: "'John Nichel'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Saturday, July 31, 2004 12:10 AM Subject: RE: [PHP] db transactions across multiple page

RE: [PHP] db transactions across multiple pages...

2004-07-31 Thread bruce
ded to be able to maintain the connection with the db over multiple pages... -bruce -Original Message- From: Jim Grill [mailto:[EMAIL PROTECTED] Sent: Friday, July 30, 2004 10:48 PM To: [EMAIL PROTECTED]; 'John Nichel'; [EMAIL PROTECTED] Subject: Re: [PHP] db transactions acro

Re: [PHP] db transactions across multiple pages...

2004-07-30 Thread Jim Grill
o: "'John Nichel'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Saturday, July 31, 2004 12:10 AM Subject: RE: [PHP] db transactions across multiple pages... > you also won't see the mysqli pconnect function... which tells me that at > least for now, it&#x

RE: [PHP] db transactions across multiple pages...

2004-07-30 Thread bruce
you also won't see the mysqli pconnect function... which tells me that at least for now, it's not there... -bruce -Original Message- From: John Nichel [mailto:[EMAIL PROTECTED] Sent: Friday, July 30, 2004 8:44 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] db transactions acros

Re: [PHP] db transactions across multiple pages...

2004-07-30 Thread John Nichel
bruce wrote: not sure if it's php/mysqli... but if you check the php.net for the "mysqli" not "mysql" functions... you won't see the persistent attribute listed for the php.ini attributes... I wouldn't worry too much about that though. I mean if persistant connections are required for transaction

RE: [PHP] db transactions across multiple pages...

2004-07-30 Thread Pablo Gosse
> the pconnect supposedly allowed an app to use the same connection if > one was available. so an app would establish the connection on page > 1, and page 2 could use the same db connection... this is required as > i understand it if you're going to do transactional processing, as > once the conne

RE: [PHP] db transactions across multiple pages...

2004-07-30 Thread bruce
ohn Nichel [mailto:[EMAIL PROTECTED] Sent: Friday, July 30, 2004 2:15 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] db transactions across multiple pages... bruce wrote: > we want to have the ability to perform db queries/actions with the db across > multiple pages. > > the pconnect supposed

Re: [PHP] db transactions across multiple pages...

2004-07-30 Thread John Nichel
bruce wrote: we want to have the ability to perform db queries/actions with the db across multiple pages. the pconnect supposedly allowed an app to use the same connection if one was available. so an app would establish the connection on page 1, and page 2 could use the same db connection... this i

RE: [PHP] db transactions across multiple pages...

2004-07-30 Thread bruce
4 1:45 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] db transactions across multiple pages... bruce wrote: > i can't be the only one to need to do this > > since it appears that php5/mysqli no longer supports pconnect, how does this > get done??? > > it almost seems that th

Re: [PHP] db transactions across multiple pages...

2004-07-30 Thread John Nichel
bruce wrote: i can't be the only one to need to do this since it appears that php5/mysqli no longer supports pconnect, how does this get done??? it almost seems that there needs to be a small intermediate server/app that php would talk to, that would in turn talk with the mysql server. this app