X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/667c9c08939da6fd9191296adcb1486d6a4ddc70..3bd11bc0e2c0e7eacb4e17e7189c3e0e73599342:/lib/MECON/HTML/TablaDB.php?ds=sidebyside diff --git a/lib/MECON/HTML/TablaDB.php b/lib/MECON/HTML/TablaDB.php index 84022f1..591cdc2 100644 --- a/lib/MECON/HTML/TablaDB.php +++ b/lib/MECON/HTML/TablaDB.php @@ -104,7 +104,7 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla { * $tabla = new MECON_HTML_TablaDB('personas', array('width' => '100%')); * $result = $db->query('SELECT nombre, apellido FROM tabla'); * if (DB::isError($result)) { - * die('Error'); + * trigger_error('Error', E_USER_ERROR); * } * // Agrega el paginador por defecto y lo guarda para mostrar solo los * // resultados paginados después. @@ -295,7 +295,7 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla { * $tabla = new MECON_HTML_TablaDB('personas', array('width' => '100%')); * $result = $db->query('SELECT nombre, apellido, activo FROM tabla'); * if (DB::isError($result)) { - * die('Error'); + * trigger_error('Error', E_USER_ERROR); * } * $tabla->addRow( * array('Col1', 'Nombre', 'Apellido', 'Activo', 'PopUp1', 'PopUp2'), @@ -556,7 +556,7 @@ class MECON_HTML_TablaDB extends MECON_HTML_Tabla { * $tabla = new MECON_HTML_TablaDB('personas', array('width' => '100%')); * $result = $db->query('SELECT nombre, apellido FROM tabla'); * if (DB::isError($result)) { - * die('Error'); + * trigger_error('Error', E_USER_ERROR); * } * $tabla->addRow(array('Col1', 'Nombre', 'Apellido', 'Modificar', 'Borrar', * 'Agregar'), 'cabecera');