Help for this page

Select Code to Download


  1. or download this
    ...
    my $SQL = <<SQL;
    ...
    $sth->finish || die;
    $dbh->disconnect;
    ...
    
  2. or download this
    # can't use select * so ...
    if ( $table eq "MY_FIRST_TABLE" ) {
    ...
    } elsif ( $table eq "MY_2ND_TABLE" ) {
        $SQL = "select another_col, dob from MY_2ND_TABLE";
    } ...