- $tmp = $sql['obtener_datos_usuario'].$sql['obtener_datos_usuario3'];
- $dbh = $this->_db->prepare($tmp);
- $res = $this->_db->execute($dbh,array($this->getLogin()));
-
- if ($re = $res->fetchRow(DB_FETCHMODE_ASSOC)) {
- if (isset($re['nrodoc'])) {
- $this->setNrodoc($re['nrodoc']);
- }
- else {
- $this->setNrodoc();
- }
- if (isset($re['nombre'])) {
- $this->setNombre($re['nombre']);
- }
- else {
- $this->setNombre();
- }
- }