Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Answer: What are placeholders in DBI, and why would I want to use them?

by EvdB (Deacon)
on Nov 13, 2003 at 09:21 UTC ( [id://306745]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $query = $dbh->prepare
        ( "select id, name from user where name = ?" );
    $query->execute( $name_from_params );
    
  2. or download this
    my $query = $dbh->prepare
        ( "select id, name from user " .
          "where name = '$name_from_params'" );
    $query->execute();
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (6)
As of 2024-04-26 09:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found