Merci à a_horse_with_no_name . Je suis capable de trouver une solution à mon problème. Je n'ai pas besoin d'appeler la procédure pour stocker l'image, j'ai besoin de passer l'image en tant que flux binaire.
PreparedStatement pstmt = con.prepareStatement("UPDATE PRODUCTS SET IMAGE = ? WHERE ID = ?");
File file = new File("C:\\Program Files (x86)\\openbravopos-2.30.2\\image.jpg");
FileInputStream in = new FileInputStream(file);
try
{
pstmt.setBinaryStream(1, in, (int) file.length());
pstmt.setString(2, id);
pstmt.executeUpdate();
//con.commit
}
catch (Exception ee)
{
System.out.println("Exception is:- " + ee);
}