Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: Having to specify $_

by runrig (Abbot)
on Dec 09, 2002 at 04:26 UTC ( [id://218448]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    {
      push @results, $sth->fetchrow_hashref || last;
      redo;
    }
    
  2. or download this
    @results = @{$sth->fetchall_arrayref({})};
    
  3. or download this
    Currently, a new hash reference is returned for each 
    row.  This will change in the future to return the same
    hash ref each time, so don't rely on the current 
    behaviour.
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (9)
As of 2024-03-28 10:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found