下面的代码对我的 SQL 中的每一行都进行了授权。有没有办法在 SQL 写入结束时纠正一行?那是什么语法?类似于“此报告由用户 John Doe 于 2013 年 7 月 1 日运行”。
db.eachRow(sql) {
def desc = it.summary
desc = desc.replaceAll("[\r\n]", "")
file.append(it.CHANGEID + "\t" + it.REGION + "\t" + it.DIVISION + "\t" + desc + "\t" + "\n")
}