Does it work with 4.0.6?  If it behaves the same, it's not a 
showstopper.  Basically, 4.1.0 comes out based on RC5 unless we find things 
that
(a) Break things that used to work in a previous version, for a potentially 
large number of people, or
(b) Pose a huge security risk or a major stability problem

Unbuffered queries were introduced in 4.0.6, so if they broke in 4.1.0, it 
may be necessary to fix.  If the status hasn't changed, then it can wait 
for 4.2.0.

Zeev

At 12:32 04/12/2001, Derick Rethans wrote:
>Hello,
>
>yes yes... I can still win my bet :)
>
>The following script:
><?php
>     $query = 'SELECT * FROM users';
>     mysql_connect ('localhost', 'db_user', 'db_pass');
>     mysql_select_db ('ecommerce');
>
>     $res = mysql_unbuffered_query ($query);
>     while ($row = mysql_fetch_row ($res)) {
>         echo $row[0]."\n";
>     }
>
>     $res = mysql_unbuffered_query ($query);
>     while ($row = mysql_fetch_row ($res)) {
>         echo $row[0]."\n";
>     }
>?>
>
>makes PHP never end (it 'hangs' on a network thing). Database and queries
>make no difference.
>
>Used versions:
>PHP 4.1.0 RC5
>MySQL 3.23.44 MAX (Both InnoDB and MyISAM tables)
>Bundled MySQL libraries (I'm now building with non-bundled libs)
>
>regards,
>Derick
>
>
>On Mon, 3 Dec 2001, Zeev Suraski wrote:
>
> > You know the drill, but practice makes perfect!
> >
> > In a divine effort to prevent both Derick and Zak from winning their bets
> > (Derick bet we'll go up to RC8, Zak bet that we'll go as far as RC7),
> > please folks, FIND NO BUGS!  It's a 'final release' darn it :)
> >
> > Zeev
> >
> >
> > --
> > PHP Quality Assurance Mailing List <http://www.php.net/>
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> > To contact the list administrators, e-mail: [EMAIL PROTECTED]
> >
>
>Derick Rethans
>
>---------------------------------------------------------------------
>         PHP: Scripting the Web - www.php.net - [EMAIL PROTECTED]
>              SRM: Site Resource Manager - www.vl-srm.net
>---------------------------------------------------------------------
>     JDI Media Solutions - www.jdimedia.nl - [EMAIL PROTECTED]
>      Boulevard Heuvelink 102 - 6828 KT Arnhem - The Netherlands
>---------------------------------------------------------------------


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to