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

Re^7: Making a regex case insensitive

by davorg (Chancellor)
on Mar 06, 2007 at 19:53 UTC ( [id://603496]=note: print w/replies, xml ) Need Help??


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

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?

Replies are listed 'Best First'.
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://603496]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (4)
As of 2024-04-18 18:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found