According to the manual of mysql_query() and to everything I know about this function that I used so many times, it can either return a resource or FALSE if the query is a SELECT. Yet it returns TRUE from time to time.
How can this be? It never ever happened before. Is this a bug in PHP 5.3.2? Does anyone know anything about this?
The code is something like:
if (!$resource = mysql_query($query, $handle)) {
throw some exception;
}
var_dump($query);
if ($resource === true && strpos($query, 'SELECT') !== false) {
throw new Exception('mysql_query() returned TRUE for SELECT');
}
It's pretty hard to reproduce, too. It happens only from time to time. I also noticed that it's likely this happens at the same time the server interrupts the connection suddenly, in which case it should return FALSE...
var_dump()clearly shows a normalSELECTquery that I run in a normal MySQL client with normal results. – rid Jun 1 '11 at 21:58$resourceto -1 before that query, can you still reproduce it? I'm wondering in the case where the server is interrupted whether the value is actually changed or just not updated. – Mel Jun 1 '11 at 22:05Lost connection to MySQL server during query.. If this happens though, the manual states (and this was always the case) thatmysql_query()will returnFALSE, notTRUE... It does however confirm the suspicion that this strange behavior happens if the server suddenly drops the connection... – rid Jun 1 '11 at 22:22