Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Perl and MySQL - performing a search...

by Bilbo (Pilgrim)
on Jan 27, 2003 at 09:33 UTC ( [id://230176]=note: print w/replies, xml ) Need Help??


in reply to Perl and MySQL - performing a search...

You don't seem to be interested in which words in your list are matched, just in whether any words are matched, so why not use the rows method which tells you how many rows were matched by your query.

$sth = $dbh->prepare (qq{ SELECT * FROM `forbidden_usernames` WHERE `f +_user` LIKE ? }); $sth->execute("$str"); my $rows = $sth->rows; $sth->finish(); if ($rows) { return("bad"); }

Or you might just want to return the nuumber of rows matched.

Note: Untested code

Update: Actually I suppose that the suggestion of CountZero above is a better way of achieving the same result. My suggestion would only be more appropriate if you might be interested in which words were matched.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (3)
As of 2024-04-16 16:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found