Skip to content

Instantly share code, notes, and snippets.

@arufian
Last active August 29, 2015 14:07
Show Gist options
  • Select an option

  • Save arufian/6395de554f93a8adb9c5 to your computer and use it in GitHub Desktop.

Select an option

Save arufian/6395de554f93a8adb9c5 to your computer and use it in GitHub Desktop.
Select * in SOQL using Apex Class
String table = 'TableName'; // with __c if use Custom Object
Map<String, Schema.SObjectType> m = Schema.getGlobalDescribe() ;
Schema.SObjectType s = m.get(table) ;
Schema.DescribeSObjectResult r = s.getDescribe() ;
Map<String, Schema.SObjectField> fields = r.fields.getMap() ;
string soql = '';
for (String fieldName : fields.keyset()) {
if (soql != '') {
soql += ', ';
}
soql += fieldName;
}
soql = 'SELECT ' + soql + ' FROM ' + table;
System.debug(soql);
List<InternalReport__c> acs = Database.query(soql);
System.debug(acs.get(0));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment