+ // +X2C Operation 371
+ /**
+ * Graba en base la relacion
+ *
+ * @return mixed
+ * @access protected
+ */
+ function _grabarDb() // ~X2C
+ {
+ $datos = array ('login', 'id_perfil', 'id_sistema', 'responsable');
+ $re = $this->_db->autoPrepare('perfil_sist_usuario', $datos, DB_AUTOQUERY_INSERT);
+ foreach ($this->getPerfiles() as $perfil) {
+ $datos = array ($this->getLogin(),
+ $perfil,
+ $_SESSION['samurai']['id_sistema'],
+ $_SESSION['samurai']['login']);
+ $res = $this->_db->execute($re, $datos);
+ if (PEAR::isError($res)) {
+ return $res;
+ }
+ }
+ }
+ // -X2C
+
+ // +X2C Operation 372
+ /**
+ * Borra de la base la relacion
+ *
+ * @return mixed
+ * @access protected
+ */
+ function _borrarDb() // ~X2C
+ {
+ $sql = parse_ini_file(dirname(__FILE__) . '/Usuario/consultas.ini', true);
+ $tmp = $sql['borrar'];
+ $dbh = $this->_db->prepare($tmp);
+ $tmp = array ($this->getLogin(), $_SESSION['samurai']['id_sistema']);
+ return $this->_db->execute($dbh,$tmp);
+ }
+ // -X2C