String uuid = UUIDGenerator.generateUuid();
dc.setSQL("insert into workflowtask_files(id,workflowtask_id,file_inode) values(?,?,?)");
dc.addParam(uuid);
dc.addParam(workflowTaskId);
dc.addParam(fileInode);
dc.loadResult();
}
dc.executeStatement(delete_task_file_relations);
}
private void workflowCommentChanges() throws SQLException, DotDataException{
DotConnect dc = new DotConnect();