Help for this page

Select Code to Download


  1. or download this
    my $data = [
       [ 'parent1', 'child1a', 'child2a', undef,    ],
       [ 'parent1', 'child1b', 'child2b', 'child3b',],
       [ 'parent1', 'child1c', undef, undef,],
    ];
    
  2. or download this
    my $data = [
       [ 'parent1', 'child1a' ],
    ...
       [ 'parent1', 'child3b' ],
       [ 'parent1', 'child1c' ],
    ];
    
  3. or download this
        while (my $row = $sth->fetch()) {
            my ($id, $parent_id) = @$row;
            ...
        }
    
  4. or download this
        while (my $row = $sth->fetch()) {
            my ($parent_id, @children_ids) = @$row;
    ...
                ...
            }
        }