Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: variables inside SQL statements

by indigo (Scribe)
on Oct 11, 2000 at 02:24 UTC ( [id://36141]=note: print w/replies, xml ) Need Help??


in reply to variables inside SQL statements

Note - Interpolating variables into SQL is bad. Instead, use 'bind' variables, like so:
my $sql = 'INSERT INTO table ( path ) VALUES (:1)'; # Compile sql my $sth = $dbh->prepare($sql) or die $dbh->errstr; # Bind path to :1 $sth->execute('/path/to/this') or die $dbh->errstr;

Replies are listed 'Best First'.
RE: Answer: variables inside SQL statements
by merlyn (Sage) on Oct 11, 2000 at 03:44 UTC
      You mean there are databases other than mySQL and Oracle? I don't understand. :)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (5)
As of 2024-04-25 10:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found