Normalmente las conexiones tienen un Try and Cath.
En resumen es aquello que try ( si funciona ) catch ( si no funciona)
La pregunta es, para conectarse al mysql des de php es importante hacer try an catch ?
Sin try catch
$con = mysql_connect("localhost","root","");
if (!$con ) {
die('Could not connect: ' . mysql_error());
}
$consulta = "select "
mysql_query($consulta) or print("error: ".mysql_error() );
Con try catch
try {
+ sus conexiones
}
catch(){
+ mensajes de error etc..
Que es más importante y que no ?
Es decir si haría falta el try catch y porque