Help for this page

Select Code to Download


  1. or download this
    $dbh->do(<<SQL);
    -- create first temp table
    ...
    $dbh->do(<<SQL);
    -- create third temp table
    SQL
    
  2. or download this
    for my $file ("first.sql", "second.sql", "third.sql") {
        open my $fh, '<', $file or die "$file: $!";
    ...
        my $sql = <$fh>;
        $dbh->do( $sql );
    }