Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

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