Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Replacing DBI->do()

by mje (Curate)
on Apr 23, 2014 at 14:02 UTC ( [id://1083364]=note: print w/replies, xml ) Need Help??


in reply to Replacing DBI->do()

Not ignoring Corion's comments the do should be something like

my $id = $dbh->do(q{INSERT INTO person (id, first_name, last_name) val +ues(?,?,?}, undef, undef, $first, $last});

that is, do($sql, undef, @bind_values). Also, notice I removed the trailing ';'. Also, I'm guessing your id field is actually auto generated for you by the database and a sequence or something in which case you can leave out the insert of the id entirely.

Also, your assignment to $id worries me as it will not be the id auto generated by the database.

Log In?
Username:
Password:

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

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

    No recent polls found