*/
public synchronized int supprimerCommande(Commande c)
throws SQLException, FactoriesException{
// verification rapide/complete de l'existence d'une commande
if(rechercherCommande(c.getIdCommande(), c.getLeClient()) == null)
throw new FactoriesException(FactoriesException.COMMANDE_EXISTE_PAS);
pDeleteCommande.clearParameters();
pDeleteCommande.setString(1, c.getIdCommande());
pDeleteLignesCommande.clearParameters();