Hello guys, I'll explain the situation to you. I have a table in an access database that contains a field of type attachments, and I cannot update that field, specifically I am trying to add a new text file to an already saved record. This is the code I am using: public void AddFile(int id, File file) { try { Attachment newFile = ConvertToAttachment(file); try { Conexion conect1 = new Conexion(dbName); Connection con1 = conect1.getConnection(); String sql = "UPDATE Alineador SET [Campo2] = ? WHERE...