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
 [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

Add a Patch

Pull Requests

Add a Pull Request

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 Apr 18 23:01:27 2024 UTC