public function update(Projet $projet) { $query = $this->_db->prepare('UPDATE t_projet SET nom=:nom, nomArabe=:nomArabe, titre=:titre, adresse=:adresse, adresseArabe=:adresseArabe, superficie=:superficie, description=:description, budget=:budget, updatedBy=:updatedBy, updated=:updated WHERE id=:id') or die(print_r($this->_db->errorInfo())); $query->bindValue(':id', $projet->id()); $query->bindValue(':nom', $projet->nom()); $query->bindValue(':nomArabe', $projet->nomArabe()); $query->bindValue(':titre', $projet->titre()); $query->bindValue(':adresse', $projet->adresse()); $query->bindValue(':adresseArabe', $projet->adresseArabe()); $query->bindValue(':description', $projet->description()); $query->bindValue(':superficie', $projet->superficie()); $query->bindValue(':budget', $projet->budget()); $query->bindValue(':updated', $projet->updated()); $query->bindValue(':updatedBy', $projet->updatedBy()); $query->execute(); $query->closeCursor(); }