Ver Mensaje Individual
  #4 (permalink)  
Antiguo 20/09/2009, 17:10
RAAM08
 
Fecha de Ingreso: mayo-2009
Ubicación: Stgo. Pinotepa Nacional Oaxaca
Mensajes: 34
Antigüedad: 15 años, 8 meses
Puntos: 0
Respuesta: Clase Contador.... No funciona....

Hola mi clase ConexionBD es esta:
class ConexionBD
{
private $servidor = "servidor";
private $usuario = "user";
private $contrasena = "pass";
private $bd = "bd";
private $linkServer;
private $linkBD;
private $cSQL;

public function setConectar()
{
$this->linkServer = mysql_connect($this->servidor,$this->usuario,$this->contrasena);
if($this->linkServer)
{
$this->linkBD = mysql_select_db($this->bd,$this->linkServer);
if(!$this->linkBD)
{
throw new Exception("No se puede recuperar la BD");
}
}
else
{
throw new Exception("El servidor no se encuentra disponible, sus datos son incorrectos");
}
}

public function setCerrar()
{
mysql_close($this->linkServer);
}

public function setSQL($SQL)
{
try
{
$cSQL = mysql_query($SQL,$this->linkServer);
if(!$cSQL)
{
throw new Exception("No se puede ejecutar la consulta.. ".$SQL);
}
}
catch(Exception $ex)
{
throw new Exception($ex->getMessage());
}
}


public function getSQL($SQL)
{
try
{
$cSQL = mysql_query($SQL,$this->linkServer);
if(!$cSQL)
{
throw new Exception("No se puede ejecutar la consulta...".$SQL);
}
else
{
return $cSQL;
}
}
catch(Exception $ex)
{
throw new Exception($ex->getMessage());
}
}

public function getDatos($cSQL)
{
return mysql_fetch_array($cSQL);
}
}


Lo siento pero no veo el error, desearia que me dijeran dond esta mi errror !!!!!!!!!