Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: designing a program - your wisdom needed

by Corion (Patriarch)
on Jan 20, 2022 at 07:12 UTC ( [id://11140627]=note: print w/replies, xml ) Need Help??

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 );
    }
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11140627]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (3)
As of 2024-04-24 20:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found