Intentlo asi :
Código PHP:
public function loadObjectList()
{
if(!($cur = $this->execute()))
{
return null;
}
$estearray = array();
while($row = @mysql_fetch_object($cur))
{
array_push($estearray, $row);
}
return $estearray;
}
Me cuenta que resultado le da eso.