Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 1533 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1533 Rev 1534
Línea 68... Línea 68...
68
    public function fetchOneByUuid($uuid)
68
    public function fetchOneByUuid($uuid)
69
    {
69
    {
70
        $prototype = new Survey();
70
        $prototype = new Survey();
71
        $select = $this->sql->select(self::_TABLE);
71
        $select = $this->sql->select(self::_TABLE);
72
        $select->where->equalTo('uuid', $uuid);
72
        $select->where->equalTo('uuid', $uuid);
73
        echo $select->getSqlString($this->adapter->platform); exit;
73
        //echo $select->getSqlString($this->adapter->platform); exit;
74
        return $this->executeFetchOneObject($select, $prototype);
74
        return $this->executeFetchOneObject($select, $prototype);
75
    }
75
    }
Línea 76... Línea 76...
76
   
76