Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

When mysql_query returns false

Tags:

php

mysql

Aside from writing the wrong query and not having permissions to access a table, when mysql_query returns false? Are there any other cases?

like image 765
AsTheWormTurns Avatar asked Dec 20 '11 14:12

AsTheWormTurns


People also ask

What will be the return value of mysql_query () function on error?

According to the MySQL reference documentation for mysql_query this should return zero on success and non-zero on failure.

Is mysql_query deprecated?

This extension was deprecated in PHP 5.5. 0, and it was removed in PHP 7.0.

What is the use of mysql_query () function?

mysql_query() sends a query to the currently active database on the server that's associated with the specified link identifier. If link_identifier isn't specified, the last opened link is assumed. If no link is open, the function tries to establish a link as if mysql_connect() was called with no arguments, and use it.


2 Answers

See the reference guide:

For SELECT, SHOW, DESCRIBE, EXPLAIN and other statements returning resultset, mysql_query() returns a resource on success, or FALSE on error.

For other type of SQL statements, INSERT, UPDATE, DELETE, DROP, etc, mysql_query() returns TRUE on success or FALSE on error.

The returned result resource should be passed to mysql_fetch_array(), and other functions for dealing with result tables, to access the returned data.

Use mysql_num_rows() to find out how many rows were returned for a SELECT statement or mysql_affected_rows() to find out how many rows were affected by a DELETE, INSERT, REPLACE, or UPDATE statement.

mysql_query() will also fail and return FALSE if the user does not have permission to access the table(s) referenced by the query.

http://php.net/manual/en/function.mysql-query.php

Edit: Clarification of what those errors actually are.

So we have list of things that can return false:

  • When a MySQL statement which returns a resultset gets an error
  • When a MySQL statement which doesn't return anything gets an error
  • When a user does not have MySQL permission to access a table reference

In my opinion the first 2 are the ones that are a bit diffuse. What are the possible errors? There are 59 different client errors you can get from MySQL. These are more system related errors which we can presume that php will handle and probably wrap into a smaller amount of abstract errors.

Except for those client errors you have a set of more abstract errors which you can encounter during usage which is more related to using the actual API inside the application rather than the raw access to the MySQL server. Those are:

  • Access denied
  • Can't connect to [local] MySQL server
  • Lost connection to MySQL server
  • Client does not support authentication protocol
  • Password Fails When Entered Interactively
  • Host 'host_name' is blocked
  • Too many connections
  • Out of memory
  • MySQL server has gone away
  • Packet too large
  • Communication Errors and Aborted Connections
  • The table is full
  • Can't create/write to file
  • Commands out of sync
  • Ignoring user
  • Table 'tbl_name' doesn't exist
  • Can't initialize character set
  • Table corruption issues
  • Syntax related issues

Here are the references of what I just said:

  • List of the client errors
  • List of the common errors dealing with the API
  • References about query related issues
  • Table related issues
  • Other issues related to known bugs
like image 156
rzetterberg Avatar answered Sep 23 '22 13:09

rzetterberg


Thank you for your comment.
I am sure there is absolutely no need to dig into such details.

A thing you really need is error message which you can read and thus get informed of the particular problem.

So, it seems that mysql_error() function is really what you're looking for.

$res = mysql_query($sql) or trigger_error(mysql_error()." in ".$sql);

looks sufficient enough.

like image 43
Your Common Sense Avatar answered Sep 23 '22 13:09

Your Common Sense