String sqlUpdateXSLT = "UPDATE mailer_details.auto_mailer_2 set xslt=? where auto_mailer_name='" + mailerName + "'"; PreparedStatement stmt = con.prepareStatement(sqlUpdateXSLT); FileInputStream fis = new FileInputStream(mFile); stmt.setBlob(1, fis, (int) mFile.length()); int ra = stmt.executeUpdate(sqlUpdateXSLT);
SET
int ra = stmt.executeUpdate();
int ra = stmt.executeUpdate(sqlUpdateXSLT);
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)