Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: my $x or my ($x)

by Bod (Parson)
on Jan 02, 2021 at 22:47 UTC ( [id://11126175]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
            my $query = $dbh->prepare("SELECT idFrame, name, colour FROM F
    +rame");
            $query->execute();
            while (my ($frame) = $query->fetchrow_hashref) {
                push @frames, $frame;
            }
    
  2. or download this
            my $query = $dbh->prepare("SELECT idFrame, name, colour FROM F
    +rame");
            $query->execute();
            while (my $frame = $query->fetchrow_hashref) {
                push @frames, $frame;
            }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (2)
As of 2024-04-24 23:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found