ID: 9812
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Old-Status: Feedback
Status: Closed
Bug Type: MySQL related
Assigned To:
Comments:
I can reproduce this one with this script:
<?php
$db=mysql_connect("localhost", "user", "");
$rc=mysql_select_db("thisdbdoesnotexist",$db);
if ($rc<=0) {
echo mysql_error()."\n";
mysql_close($db);
exit;
}
?>
It's mysql_error() in mysql itself that is broken.
I can reproduce this within the mysql shell too..
Not a bug in PHP. -> closed.
--Jani
Previous Comments:
---------------------------------------------------------------------------
[2001-03-17 15:55:32] [EMAIL PROTECTED]
Can you please add a shortest possible script into
this report which can be used to reproduce this?
--Jani
---------------------------------------------------------------------------
[2001-03-17 15:46:01] [EMAIL PROTECTED]
mysql_connect("localhost","user","")
report an error that should not exist:
SQL Server error, cannot select databaseAccess denied for user: '@localhost' to
database xxx
@localhost ? shouldn't it be user or user@localhost?
---------------------------------------------------------------------------
ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=9812&edit=2
--
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]