From:             ecstasy2000 at gmail dot com
Operating system: Win32 / XP SP2
PHP version:      5.2.0
PHP Bug Type:     MySQLi related
Bug description:  mysqli_query does not report warning message

Description:
------------
mysqli_query function does not fail with a warning message when invalid
queries are sent.

Reproduce code:
---------------
error_reporting(E_ALL);
$link = mysqli_connect("localhost", "andrei.tudor", "babardeala",
"test");
$result = mysqli_query($link, "SELECT * FROM Groupss");

Expected result:
----------------
I use that query but in my database there is no table called "Groupss". So
there should be a warning message shown on my screen even if i don't call
mysqli_error() function.

Actual result:
--------------
There is no warning message.
This happens for any wrong query string.

-- 
Edit bug report at http://bugs.php.net/?id=39774&edit=1
-- 
Try a CVS snapshot (PHP 4.4): 
http://bugs.php.net/fix.php?id=39774&r=trysnapshot44
Try a CVS snapshot (PHP 5.2): 
http://bugs.php.net/fix.php?id=39774&r=trysnapshot52
Try a CVS snapshot (PHP 6.0): 
http://bugs.php.net/fix.php?id=39774&r=trysnapshot60
Fixed in CVS:                 http://bugs.php.net/fix.php?id=39774&r=fixedcvs
Fixed in release:             
http://bugs.php.net/fix.php?id=39774&r=alreadyfixed
Need backtrace:               http://bugs.php.net/fix.php?id=39774&r=needtrace
Need Reproduce Script:        http://bugs.php.net/fix.php?id=39774&r=needscript
Try newer version:            http://bugs.php.net/fix.php?id=39774&r=oldversion
Not developer issue:          http://bugs.php.net/fix.php?id=39774&r=support
Expected behavior:            http://bugs.php.net/fix.php?id=39774&r=notwrong
Not enough info:              
http://bugs.php.net/fix.php?id=39774&r=notenoughinfo
Submitted twice:              
http://bugs.php.net/fix.php?id=39774&r=submittedtwice
register_globals:             http://bugs.php.net/fix.php?id=39774&r=globals
PHP 3 support discontinued:   http://bugs.php.net/fix.php?id=39774&r=php3
Daylight Savings:             http://bugs.php.net/fix.php?id=39774&r=dst
IIS Stability:                http://bugs.php.net/fix.php?id=39774&r=isapi
Install GNU Sed:              http://bugs.php.net/fix.php?id=39774&r=gnused
Floating point limitations:   http://bugs.php.net/fix.php?id=39774&r=float
No Zend Extensions:           http://bugs.php.net/fix.php?id=39774&r=nozend
MySQL Configuration Error:    http://bugs.php.net/fix.php?id=39774&r=mysqlcfg

Reply via email to