public function notasCompartidas() { $notas = new Nota($this->driver); $query = "select Nota.nota_id, Nota.nota_name, Nota.fecha, Nota.contenido, Nota.user_id\n from Nota, Comparte_Nota, Usuario where\n Nota.nota_id = Comparte_Nota.nota_id and\n Comparte_Nota.user_id = Usuario.user_id and\n Usuario.user_id = '" . $this->getUser_id() . "'"; $results = $this->driver->exec($query); return $notas->factory($results); }