以下是引用csyx在2023-7-8 20:07:39的发言:
批量替换不知道?不至于吧
replace all properties with strtrans(properties, ["article.], ["abc.])
就你这个表名来说应该还是比较安全的
然后再检查一下是否还存在别的形式
browse for 'article' $ lower(properties)
是有大小写问题,比如有的controlsource的字段名为article,有的是Article,替换了两次
以后可以这样:
replace all properties with strtran(lower(properties), [article.], [abc.])