}
if(DB::isError($result))
- die($result->getMessage("query mal hecho"));
+ trigger_error($result->getMessage("query mal hecho"), E_USER_ERROR);
if($result->numRows() > 0) {
$row = $result->fetchRow(DB_FETCHMODE_ASSOC);
}else
{
- die ("Error: Tipo de grafico $tipo no valido (aun)");
+ trigger_error ("Error: Tipo de grafico $tipo no valido (aun)", E_USER_ERROR);
}
}//del if tipo xy
* $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.
* $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'),
* $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');
$dsn = "mysql://intranet:intranet@intranet-db.mecon.ar/novedades";
$this->_db = DB::connect( $dsn , true);
if(DB::isError($this->_db))
- die($this->_db->getMessage());
+ trigger_error($this->_db->getMessage(), E_USER_ERROR);
#Carga las novedades del agente/fecha en la lista de novedades
$this->BuscarLicencia();
AND codnov = codigo";
$result = $this->_db->query($query);
if(DB::isError($result))
- die($result->getMessage());
+ trigger_error($result->getMessage(), E_USER_ERROR);
while($r = $result->fetchRow()) {
$novedad = new MECON_Novedad();
$novedad->codigo = $r[0];
AND novedad = codigo";
$result = $this->_db->query($query);
if(DB::isError($result))
- die($result->getMessage());
+ trigger_error($result->getMessage(), E_USER_ERROR);
while($r = $result->fetchRow()) {
$novedad = new MECON_Novedad();
$novedad->codigo = $r[0];
AND novedad = codigo";
$result = $this->_db->query($query);
if(DB::isError($result))
- die($result->getMessage());
+ trigger_error($result->getMessage(), E_USER_ERROR);
if($c = $result->fetchRow()) {
$codigo = $c[0];
$descripcion = $c[1];
}
if (!isset($attr))
- die ('Todas las columnas tienen que tener un ancho asignado');
+ trigger_error ('Todas las columnas tienen que tener un ancho asignado', E_USER_ERROR);
$tmp = array_sum($attr);
$dsn = "mysql://intranet:intranet@intranet-db.mecon.ar/bandas";
$db =& DB::connect($dsn , true);
if(DB::isError($db))
- die($db->getMessage());
+ trigger_error($db->getMessage(), E_USER_ERROR);
$funcion = $db->getOne(
"SELECT E.funcion
ORDER BY A.hora";
$result = $db->query($query);
if(DB::isError($result))
- die($result->getMessage());
+ trigger_error($result->getMessage(), E_USER_ERROR);
if($funcion != 'SE') {//Version tough
$int = null;