Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^2: DBI search for forward slash

by luxs (Beadle)
on Nov 08, 2020 at 07:27 UTC ( [id://11123485]=note: print w/replies, xml ) Need Help??


in reply to Re: DBI search for forward slash
in thread DBI search for forward slash

Yes, phpMyAdmin returns proper line with this request. I'm using MySql with MyISAM storage.

I can find in this table any string with one slash at the begining, but not in the middle of the string.

Replies are listed 'Best First'.
Re^3: DBI search for forward slash
by Corion (Patriarch) on Nov 08, 2020 at 08:08 UTC

    But = only compares for identity. You want LIKE, and you want the % placeholder:

    SELECT * FROM `texts` WHERE `string` LIKE '%/a/b/c%'

    ... or, with placeholders:

    SELECT * FROM `texts` WHERE `string` LIKE ?

    (and then in the ->execute() call, add the placeholders to your search string)

      LIKE is fail as well

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (4)
As of 2024-03-29 00:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found