File f=new File(urlfile);
if(f.exists()){
byte[] data=getFileBytes(f);
PreparedStatement stmt=conn.prepareStatement(“update campanas3 set media= ? where id=”+id);
stmt.setBlob(1, (Blob)new SerialBlob(data));
stmt.executeUpdate();
}