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

Re: Get a hash object from a database with DBI for use with HTML::Template

by Cine (Friar)
on Aug 04, 2002 at 14:36 UTC ( [id://187489]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        my $stmt = "SELECT * FROM $table WHERE $key_col = '$key_val'";
        my $sth = $dbhandle->prepare( $stmt );
        $sth->execute();
    
  2. or download this
        my $stmt = "SELECT * FROM $table WHERE $key_col = ?";
        my $sth = $dbhandle->prepare( $stmt );
        $sth->execute($key_val);
    
  3. or download this
        my $ref = $sth->fetchall_arrayref();
        $sth->finish();
        return map { $_->[$name_col] => $_->[$val_col] } @$ref;
    
  4. or download this
        my $ref = $sth->fetchall_hashref([$name_col,$val_col]);
        $sth->finish();
        return map {@$_} @$ref;
    
  5. or download this

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-04-25 15:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found