Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

MySQL and Perl - Shorthand

by mt2k (Hermit)
on Sep 21, 2002 at 03:11 UTC ( [id://199692]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    # Example 1: fetchrow_arrayref
    
    ...
    $sth->execute();
    print $sth->fetchrow_hashref()->{'the_name'};
    $sth->finish();
    
  2. or download this
    my $sth = $db->do("SELECT the_name FROM the_table WHERE id=3");
    print $sth;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (7)
As of 2024-04-19 11:27 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found