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
