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

Extra Information

by Revelation (Deacon)
on Mar 26, 2002 at 17:06 UTC ( [id://154443]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my @row = $dbh->selectrow_array(q{SELECT my_data1, my_data2 WHERE furn
    +iture_type=?},undef, $furniture_type);
    
  2. or download this
        $dbh = DBI->connect($DBDSN, 
                   $DBUser,
                   $DBPassword,
                   {RaiseError => 1});
    
  3. or download this
        my ($furniture_name, $price);
        chomp($furniture_type);
        $sth->execute($furniture_type) or die "Couldn't execute: '$DBI::er
    +rstr'";
        $sth->bind_col(1, \$furniture_name);
        $sth->bind_col(2, \$price);
    
  4. or download this
    chomp($furniture_type);
    $sth->execute($furniture_type) or die "Couldn't execute: '$DBI::errstr
    +'";
    $sth->bind_columns(\my ($furniture_name, $price));
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (3)
As of 2024-04-25 04:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found