public function add(Entreprise $ent) { $q = $this->_bd->prepare('INSERT INTO Entreprise SET id = :id, ' . 'nom = :nom, domaine = :domaine, ville = :ville, '); $q->bindValue(':id', $ent->getId(), PDO::PARAM_INT); $q->bindValue(':nom', $ent->getNom()); $q->bindValue(':domaine', $ent->getDomaine()); $q->bindValue(':ville', $ent->getVille()); $q->execute(); }