Ben bu kriterler Propel var.
public static function getPrenotazioniAttive($id_utente)
{
$c = new Criteria();
$c->add(self::USER_ID, 18793 );
$result = self::doSelect($c);
}
Bundan sonra ben bu ekleyin:
echo $c->toString();
olduğunu göstermektedir:
Criteria: SQL (may not be complete): SELECT FROM `prenotazione` WHERE prenotazione.USER_ID=:p1 Params: prenotazione.USER_ID => 18793
Sonra ben bu şekilde önce yöntemini çağırır:
$prenotazioni = PrenotazionePeer::getPrenotazioniAttive($this->getUser());
var_dump($prenotazioni);
die("entro");
o / Aşağıdaki SQL tümcesi yürütmek oluşturur.
SELECT IFNULL(SUM(prenotazione.VALUTAZIONE),0) AS somma,
COUNT(*) AS numero
FROM `prenotazione`
WHERE prenotazione.USER_ID=18793
Bu fıkra (i phpmyadmin giderseniz) tablodan bir satır ele alır.
Benim sorun: var_dump($prenotazioni);
sadece bir fikrin boş dönmek?