Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re^6: Making a regex case insensitive

by Win (Novice)
on Mar 06, 2007 at 19:03 UTC ( [id://603491]=note: print w/replies, xml ) Need Help??


in reply to Re^5: Making a regex case insensitive
in thread Making a regex case insensitive

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re^7: Making a regex case insensitive
by davorg (Chancellor) on Mar 06, 2007 at 19:53 UTC

    I have been given:

    my $sql = "EXEC $SPROC ". join ', ', ('?') x $procs{$SPROC}; my $sth = $dbh->prepare($sql); $sth->execute(@CHOICE);

    But I don't understand how to apply it. Did the person that gave me this mean:

    $sth->execute($Command);

    No. I meant what I wrote. And I've tried twice to explain how it's used. But you seem determined not to understand :-)

    Let's have one last try.

    1. Create an SQL statement containing placeholders (marked by question marks) where you later want to insert values.
    2. Compile that SQL using $dbh->prepare. This returns a statement handle ($sth).
    3. Execute the statement using $sth->execute passing it a list of values - one value for each placeholder in the SQL statement,

    Does that help at all?

    A reply falls below the community's threshold of quality. You may see it by logging in.
Re^7: Making a regex case insensitive
by imp (Priest) on Mar 06, 2007 at 19:24 UTC
    You should be using a whitelist for the valid values of $SPROC, as was mentioned in several of the replies to your original question. The topic of bound parameters was also covered.

    You should go back to that node and read all of the replies carefully, and ask questions when one of them doesn't make sense to you. If you just copy and paste code to see if it works you will do yourself a great disservice.

    A reply falls below the community's threshold of quality. You may see it by logging in.

Log In?
Username:
Password:

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

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

    No recent polls found