From: Martín Marrese Date: Fri, 26 Sep 2003 17:40:41 +0000 (+0000) Subject: Acomode los autoexecute para que utilicen siempre la base samurai X-Git-Tag: svn_import~71 X-Git-Url: https://git.llucax.com/mecon/samurai.git/commitdiff_plain/f058984ad70f86039f58f8c9a70617fb1c3522a0 Acomode los autoexecute para que utilicen siempre la base samurai --- diff --git a/lib/SAMURAI/Perfil.php b/lib/SAMURAI/Perfil.php index 6d5a9ce..9a56e53 100644 --- a/lib/SAMURAI/Perfil.php +++ b/lib/SAMURAI/Perfil.php @@ -343,7 +343,7 @@ class SAMURAI_Perfil { 'desc_perfil' => $this->getDescripcion(), 'responsable' => $this->getResponsable(), ); - $res = $this->_db->autoExecute('perfil', $datos, DB_AUTOQUERY_INSERT); + $res = $this->_db->autoExecute('samurai.perfil', $datos, DB_AUTOQUERY_INSERT); if (PEAR::isError($res)) { return $res; } @@ -354,7 +354,7 @@ class SAMURAI_Perfil { 'tipo_perfil' => $this->getTipo(), 'responsable' => $this->getResponsable(), ); - $res = $this->_db->autoExecute('perfil_sist', $datos, DB_AUTOQUERY_INSERT); + $res = $this->_db->autoExecute('samurai.perfil_sist', $datos, DB_AUTOQUERY_INSERT); } // -X2C @@ -422,7 +422,7 @@ class SAMURAI_Perfil { 'tipo_perfil' => $this->getTipo(), 'responsable' => $this->getResponsable(), ); - $res = $this->_db->autoExecute('perfil_sist', $datos, + $res = $this->_db->autoExecute('samurai.perfil_sist', $datos, DB_AUTOQUERY_UPDATE, 'id_perfil ='.$this->getId().' AND id_sistema='.$this->_idSistema); if (PEAR::isError($res)) { @@ -607,7 +607,7 @@ class SAMURAI_Perfil { //GRABO EN PERM_PERFIL_SIST $datos = array ('id_permiso', 'id_perfil', 'id_sistema', 'observaciones', 'responsable'); - $re = $this->_db->autoPrepare('perm_perfil_sist', $datos, DB_AUTOQUERY_INSERT); + $re = $this->_db->autoPrepare('samurai.perm_perfil_sist', $datos, DB_AUTOQUERY_INSERT); foreach ($this->getPermisos() as $permiso) { list($id, $obs) = split ('##',$permiso); $datos = array ($id, $this->getId(), $this->_idSistema, $obs, $this->getResponsable()); @@ -671,4 +671,4 @@ class SAMURAI_Perfil { } // -X2C Class :SAMURAI_Perfil -?> \ No newline at end of file +?> diff --git a/lib/SAMURAI/Permiso.php b/lib/SAMURAI/Permiso.php index ba385a0..beba603 100644 --- a/lib/SAMURAI/Permiso.php +++ b/lib/SAMURAI/Permiso.php @@ -232,7 +232,7 @@ class SAMURAI_Permiso { 'desc_permiso' => $this->getDescripcion(), 'responsable' => $this->getResponsable(), ); - return $this->_db->autoExecute('permiso', $datos, DB_AUTOQUERY_INSERT); + return $this->_db->autoExecute('samurai.permiso', $datos, DB_AUTOQUERY_INSERT); } // -X2C @@ -283,7 +283,7 @@ class SAMURAI_Permiso { 'desc_permiso' => $this->getDescripcion(), 'responsable' => $this->getResponsable(), ); - return $this->_db->autoExecute('permiso', $datos, DB_AUTOQUERY_UPDATE, 'id_permiso ='.$this->getId()); + return $this->_db->autoExecute('samurai.permiso', $datos, DB_AUTOQUERY_UPDATE, 'id_permiso ='.$this->getId()); } // -X2C @@ -391,4 +391,4 @@ class SAMURAI_Permiso { } // -X2C Class :SAMURAI_Permiso -?> \ No newline at end of file +?> diff --git a/lib/SAMURAI/Sistema.php b/lib/SAMURAI/Sistema.php index 14f3d7b..1b0b90a 100644 --- a/lib/SAMURAI/Sistema.php +++ b/lib/SAMURAI/Sistema.php @@ -603,7 +603,7 @@ class SAMURAI_Sistema { 'responsable' => $this->getResponsable(), 'estado' => 1 ); - $res = $this->_db->autoExecute('sistema', $datos, DB_AUTOQUERY_INSERT); + $res = $this->_db->autoExecute('samurai.sistema', $datos, DB_AUTOQUERY_INSERT); if (PEAR::isError($res)) { return $res; @@ -632,7 +632,7 @@ class SAMURAI_Sistema { $datos = array( 'responsable' => $responsable, 'estado' => 0 ); - $res = $this->_db->autoExecute('sistema', $datos, DB_AUTOQUERY_UPDATE, 'id_sistema = '.$idSistema); + $res = $this->_db->autoExecute('samurai.sistema', $datos, DB_AUTOQUERY_UPDATE, 'id_sistema = '.$idSistema); if (PEAR::isError($res)) { return $res; } @@ -668,7 +668,7 @@ class SAMURAI_Sistema { 'contacto' => $this->getContacto(), 'responsable' => $this->getResponsable(), ); - $res = $this->_db->autoExecute('sistema', $datos, DB_AUTOQUERY_UPDATE, 'id_sistema = '.$idSistema); + $res = $this->_db->autoExecute('samurai.sistema', $datos, DB_AUTOQUERY_UPDATE, 'id_sistema = '.$idSistema); if (PEAR::isError($res)) { return $res; } @@ -698,7 +698,7 @@ class SAMURAI_Sistema { function _grabarPermisosDb($idSistema) // ~X2C { $datos = array ('id_permiso','id_sistema','responsable'); - $re = $this->_db->autoPrepare('perm_sist', $datos, DB_AUTOQUERY_INSERT); + $re = $this->_db->autoPrepare('samurai.perm_sist', $datos, DB_AUTOQUERY_INSERT); if (isset($this->_permisos)) { foreach ($this->_permisos as $permiso) { $datos = array ($permiso, $idSistema, $this->getResponsable()); @@ -766,7 +766,7 @@ class SAMURAI_Sistema { 'observaciones' => $observacion, 'responsable' => $this->getResponsable(), ); - $res = $this->_db->autoExecute('perm_sist', $datos, DB_AUTOQUERY_INSERT); + $res = $this->_db->autoExecute('samurai.perm_sist', $datos, DB_AUTOQUERY_INSERT); //Recargo los datos del sistema $this->_obtenerDatosDb(); return null; @@ -882,7 +882,7 @@ class SAMURAI_Sistema { 'observaciones' => $observacion, 'responsable' => $this->getResponsable(), ); - $this->_db->autoExecute('perm_sist', + $this->_db->autoExecute('samurai.perm_sist', $datos, DB_AUTOQUERY_UPDATE, 'id_sistema = '.$this->getId().' AND id_permiso = '.$idPermiso.' AND observaciones =\''.$obs_ant.'\''); @@ -993,4 +993,4 @@ class SAMURAI_Sistema { } // -X2C Class :SAMURAI_Sistema -?> \ No newline at end of file +?> diff --git a/lib/SAMURAI/Usuario.php b/lib/SAMURAI/Usuario.php index a4e12f2..d629eea 100644 --- a/lib/SAMURAI/Usuario.php +++ b/lib/SAMURAI/Usuario.php @@ -347,7 +347,7 @@ class SAMURAI_Usuario { function _grabarDb() // ~X2C { $datos = array ('login', 'id_perfil', 'id_sistema', 'responsable'); - $re = $this->_db->autoPrepare('perfil_sist_usuario', $datos, DB_AUTOQUERY_INSERT); + $re = $this->_db->autoPrepare('samurai.perfil_sist_usuario', $datos, DB_AUTOQUERY_INSERT); foreach ($this->getPerfiles() as $perfil) { $datos = array ($this->getLogin(), $perfil, @@ -487,4 +487,4 @@ class SAMURAI_Usuario { // -X2C } // -X2C Class :SAMURAI_Usuario -?> \ No newline at end of file +?>