Re: [PHP] php temp table question (for mysql)

2003-10-31 Thread Curt Zirzow
* Thus wrote Larry Brown ([EMAIL PROTECTED]): > I'm now finding that persistent connections is allowing the temp table to > remain. I have a sql query that creates the table and another that joins > the temp table to another for a result set that I use. If I press refresh on How are you creating

Re: [PHP] php temp table question (for mysql)

2003-10-31 Thread Marek Kilimajer
27, 2003 4:43 PM To: Larry Brown; PHP List Subject: Re: [PHP] php temp table question (for mysql) From: "Larry Brown" <[EMAIL PROTECTED]> Does anyone know whether the use of persistent connections with php will allow a temp table created by a script to linger around No, the tabl

RE: [PHP] php temp table question (for mysql)

2003-10-31 Thread Larry Brown
W. Holmes [mailto:[EMAIL PROTECTED] Sent: Monday, October 27, 2003 4:43 PM To: Larry Brown; PHP List Subject: Re: [PHP] php temp table question (for mysql) From: "Larry Brown" <[EMAIL PROTECTED]> > Does anyone know whether the use of persistent connections with php will > allow

Re: [PHP] php temp table question (for mysql)

2003-10-27 Thread Curt Zirzow
* Thus wrote Larry Brown ([EMAIL PROTECTED]): > Does anyone know whether the use of persistent connections with php will > allow a temp table created by a script to linger around and cause a problem > with the next execution of the script when it tries to create the temp table > again? Also if it

Re: [PHP] php temp table question (for mysql)

2003-10-27 Thread CPT John W. Holmes
From: "CPT John W. Holmes" <[EMAIL PROTECTED]> > Temporary tables are unique for that specific question. I mean "connection", not "question"... I'm working on a survey system, so I have "questions" on my mind. :) ---John Holmes... -- PHP General Mailing List (http://www.php.net/) To unsubscr

Re: [PHP] php temp table question (for mysql)

2003-10-27 Thread CPT John W. Holmes
From: "Larry Brown" <[EMAIL PROTECTED]> > Does anyone know whether the use of persistent connections with php will > allow a temp table created by a script to linger around No, the table will still be removed at the end of the script whether you use persistant connections or not. > and cause a p

RE: [PHP] php temp table question (for mysql)

2003-10-27 Thread Pablo Gosse
] php temp table question (for mysql) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] php temp table question (for mysql)

2003-10-27 Thread Larry Brown
Does anyone know whether the use of persistent connections with php will allow a temp table created by a script to linger around and cause a problem with the next execution of the script when it tries to create the temp table again? Also if it does present a problem with the next script execution

[PHP] php temp table question

2003-10-27 Thread Larry Brown
Does anyone know whether the use of persistent connections with php will allow a temp table created by a script to linger around and cause a problem with the next execution of the script when it tries to create the temp table again? Also if it does present a problem with the next script execution