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

2004-07-31 Thread 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 across multiple pages... It's my understanding that persistent connections via the old ext/mysql was a flawed

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

2004-07-31 Thread Tularis
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's not there... -bruce -Original Message- From: John Nichel [mailto:[EMAIL

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 assure

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 bruce
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 wrote bruce: yeah

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 talking

[PHP] db transactions across multiple pages...

2004-07-30 Thread bruce
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 would

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

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

2004-07-30 Thread bruce
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 there needs to be a small intermediate server/app

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

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

2004-07-30 Thread bruce
: 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 supposedly allowed an app to use the same connection if one

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

2004-07-30 Thread Pablo Gosse
snip 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

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 transactions,

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 across multiple

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

2004-07-30 Thread Jim Grill
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's not there... -bruce -Original Message- From: John Nichel [mailto