092_Schema获取表字段的方式
Posted bandarifang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了092_Schema获取表字段的方式相关的知识,希望对你有一定的参考价值。
Map<String, Schema.SObjectField> objectFields = Schema.getGlobalDescribe().get(‘ObjectName‘).getDescribe().fields.getMap();
List<String> fieldList = new List<String>();
for(string s:objectFields.keySet()){
fieldList.add(s);
}
System.debug(‘************:‘+fieldList);
System.debug( ‘&&&&&:‘+String.join( fieldList, ‘, ‘) );
以上是关于092_Schema获取表字段的方式的主要内容,如果未能解决你的问题,请参考以下文章