ID:               26803
 Updated by:       [EMAIL PROTECTED]
 Reported By:      kzuzik at ukr dot net
-Status:           Open
+Status:           Bogus
 Bug Type:         MySQL related
 Operating System: WinXP
 PHP Version:      5.0.0b3 (beta3)
 New Comment:

Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

You need to use mysqli extension for MySQL 4.1+ 


Previous Comments:
------------------------------------------------------------------------

[2004-01-05 17:34:31] kzuzik at ukr dot net

I've just changed a typo error in subject )

------------------------------------------------------------------------

[2004-01-05 17:27:33] kzuzik at ukr dot net

Description:
------------
It looks like php5 doesn't yet support stored procedures which appeared
in mysql5.

Please see the code below (from the PHP Manual)

If I uncomment line 4 and comment line 5 everything works OK.

If the code works as provided and I try to call a stored procedure
"yyy" (which includes a simple select statement) I have the following
error:

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL
result resource in c:\Inetpub\wwwroot\index.php on line 9


Reproduce code:
---------------
<?
$link = mysql_connect("localhost", "root", "");
mysql_select_db("mysql");
//$query = "select * from user";
$query = "call yyy()";
$result = mysql_query($query);

echo "<table>\n";
while ($line = mysql_fetch_array($result, MYSQL_ASSOC)) {
        echo "\t<tr>\n";
        foreach ($line as $col_value) {
                echo "\t\t<td>$col_value</td>\n";
        }
        echo "\t</tr>\n";
}
echo "</table>\n";

?>

Expected result:
----------------
I expect to see the results of calling a stored procedure (which
executes a select statement)



------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=26803&edit=1

Reply via email to