public function updateProduct($id)
 {
     $sql = "update Product set name=':name', owner=':owner' where id=:id";
     $this->db->execute($sql, array('id' => $id, 'name' => $this->product->getName(), 'owner' => $this->product->getOwner()));
 }