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

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Hi Monks,

I'm trying to see if I can run 2 commands in 1 with Perl's DBI module.  Here's my code:

$dbh->do("UPDATE person SET nickname = 'one' WHERE id=1") or die "Coul +d not execute #1: $DBI::errstr\n"; $dbh->do("UPDATE person SET nickname = 'two' WHERE id=1; UPDATE person + SET nickname = 'three' WHERE id=1") or die "Could not execute #2: $D +BI::errstr\n";
The output is: "Could not execute #2: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'UPDATE person SET nickname = 'three' WHERE id=1' at line 1"

The result is, nickname ends up being = 'one'.

Questions:

1. If the error is with setting nickname = 'three', then why doesn't nickname end up being = 'two'?

2. Does DBI allow multiple SQL statements to be run in one invocation?  If so, how can that be done?

3. Or if not, why not? Is it to help prevent SQL injection, perhaps?  That's fine, as that's the reason for my test, but I'd like to see how to make it happen before I see if my methods of prevention are working.

Thanks.
tel2


In reply to Multiple SQL statements in DBI by tel2

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (5)
As of 2024-04-24 08:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found