Buenas, necesito ayuda con unas excepciones...
No manejo muy bien el tema de los try/catch. Hice unos para manejar errores en la Conexion MySQL y me quedo bien, hasta lo hice con log y todo jeje.
El tema es que tengo este codigo y no se bien donde poner los try/throw/catch:
Código:
private function getQueryResult(){
return $this->queryResult;
}
public function getRow (){
if($this->getQueryResult())
if ($row = mysql_fetch_assoc($this->getQueryResult()))
return $row;
return false;
}
public function getRowSet(){
$result = array();
if($this->getQueryResult()){
while($row = mysql_fetch_assoc($this->getQueryResult())){
$result[] = $row;
}
return $result;
}
}
public function rowCount (){
return mysql_num_rows($this->getQueryResult());
}
public function lastId(){
return mysql_insert_id();
}
Me ayudarían un monton si me dijeran mas o menos donde irían los try/catch.
Ya tengo la clase MySQLException por las dudas...
Saludos y gracias!