php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #39774 mysqli_query does not report warning message
Submitted: 2006-12-08 00:08 UTC Modified: 2006-12-08 09:17 UTC
From: ecstasy2000 at gmail dot com Assigned:
Status: Not a bug Package: MySQLi related
PHP Version: 5.2.0 OS: Win32 / XP SP2
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: ecstasy2000 at gmail dot com
New email:
PHP Version: OS:

 

 [2006-12-08 00:08 UTC] ecstasy2000 at gmail dot com
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.

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2006-12-08 09:17 UTC] tony2001@php.net
Expected behaviour.
This function returns TRUE on success or FALSE on failure.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Dec 26 15:01:32 2024 UTC