Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Warning: mysql_fetch_* expects parameter 1 to be resource, boolean given error

i have a class called utils like this

class Utils
{
    public static $connection;

    function __construct()
    {   
    }

    public static function getConnection ()
    {
        try
        {
            $connection = mysql_connect("localhost", "root", "robingraves");
            mysql_select_db('repuesto_en_mano',$connection);
            return $connection;
        }
        catch(Exception $e)
        {
            throw new Exception('Error connection with the data base');
        }
    }

    public static function closeConnection ($conn)
    {
        mysql_close($conn);
    }   
}

And another class that makes the called

require("Utils.php");
$utils = new Utils();
$connection = $utils->getConnection();
echo $connection;
$sqlCommand = 'Select IdMarca from Marca';
$resEmp = mysql_query($sqlCommand, $connection) or die(mysql_error());
$totEmp = mysql_num_rows($resEmp);
if ($totEmp> 0) {
   while ($rowEmp = mysql_fetch_assoc($resEmp)) {
      echo "<strong>".$rowEmp['IdMarca']."</strong><br>";
   }
}

And it's say's

PHP Warning: mysql_query() expects parameter 2 to be resource, null given in BrandsService.php on line 7.

What i'm doing wrong

share|improve this question
did you check that a connection to your mysql database is being made? – Kim Jong Woo Jul 4 '11 at 4:05

marked as duplicate by j0k, Hamish, John Conde, PeeHaa 埽, Baba Dec 18 '12 at 19:22

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 1 down vote accepted

Are you sure that $connection was non-NULL? Also, I find it strange that you are constructing a new Utils object, when Utils::getConnection is a static function, rather than an instance method.

share|improve this answer

It sounds like there was an error with connecting to the database.

The mysql_*() functions don't throw exceptions.

Because there is no return, $connection is being assigned NULL.

NULL is not a valid MySQL resource, which the second argument to mysql_query() needs to be.

share|improve this answer
but what i can do wrong?? i need to put the port in the string connection?? – Jorge Jul 4 '11 at 4:16

Not the answer you're looking for? Browse other questions tagged or ask your own question.