Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    
    my @tableattribute_ref=$sforce->describeGlobal()->result->{sobjects};
    
  2. or download this
           [
              {
    ...
              }
            ];
    
  3. or download this
    my $tableattribute_ref=$sforce->describeGlobal()->result->{sobjects}[#
    +]{name};
    
  4. or download this
    my $count;
    $count = 0; 
    ...
    #This is where I can push names to an array
    $count++;
    }