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

Re: Backslash and Underscore problem with DBI and PostgreSQL.

by blokhead (Monsignor)
on Jun 21, 2004 at 04:25 UTC ( [id://368364]=note: print w/replies, xml ) Need Help??


in reply to Backslash and Underscore problem with DBI and PostgreSQL.

This begs the question, why are you using a pattern match (~~*) instead of an exact match (=) in this query? If you don't want the underscore to act as a wildcard, don't use it in a syntax where it would be interpreted as a wildcard.
select uid from user_accounts where username = ?
DBI should escape the underscore in the code above, correct?
$dbh->quote only escapes data enough to keep it from busting out of its quotes. It doesn't escape pattern-match special characters like underscores, because (a) every underscore in your database would now have a backslash in front of it when you fetched it, (b) you could never use a placeholder to replace a genuine pattern in a query.

blokhead

Log In?
Username:
Password:

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

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

    No recent polls found