Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

blaze's scratchpad

by blaze (Friar)
on Apr 14, 2005 at 22:14 UTC ( [id://447988]=scratchpad: print w/replies, xml ) Need Help??

#!/usr/bin/perl #use strict; my $user = "usern"; my $pass = "passw"; my $sql_s = "select stamp,state from pridata order by stamp limit 46"; my $dbh = DBI->connect("dbi:mysql:database=db1;",$user,$pass); my $sth = $dbh->prepare($sql_s); $sth->execute(); my $res = $sth->fetchall_arrayref(); for my $row( @$res ){ ${@$row[0]} = @$row[1]; } $sth->finish(); $dbh->disconnect();
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (5)
As of 2024-03-28 17:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found