Ver Mensaje Individual
  #5 (permalink)  
Antiguo 15/11/2010, 05:01
Avatar de JairLizcano
JairLizcano
 
Fecha de Ingreso: junio-2008
Ubicación: Santander, Colombia
Mensajes: 608
Antigüedad: 15 años, 10 meses
Puntos: 53
Exclamación Respuesta: Excepciones MySQL

Cita:
Iniciado por abimaelrc Ver Mensaje
¿Qué haz tratado de hacer?
Una pequeña función para probar y documentar:

Código PHP:
public function connect(){

         try{
                
mysql_connect($this->getHost(), $this->getUser(), $this->getPassword());
    } catch(
Exception $e){
                
       print(
'Catched:'.$e->getMessage());
    }