L3 Info : SGBD
 
◃  Ch. 13 JDBC  ▹
 

Exemple sans valeur de retour

CallableStatement testCall;
testCall = conn.prepareCall(
    "{ call supprimeAuteur(?,?) }");
testCall.setString(1, "Asimov");
testCall.setString(2, "Isaac");
testCall.execute();