Help for this page

Select Code to Download


  1. or download this
    my $rs = $schema->resultset('records');
    my @records = $rs->search({ id => \@ids });
    
  2. or download this
    my $rs = $schema->resultset('records')
        ->search({ id => \@ids });
    for my $row ( $rs->all ) {}