Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: Global dbh and inserts

by sundialsvc4 (Abbot)
on Feb 19, 2014 at 14:13 UTC ( [id://1075461]=note: print w/replies, xml ) Need Help??


in reply to Global dbh and inserts

I would recommend that things like last_insert_id be used only immediately after a statement that inserted something, and that the pair of statements be wrapped in an SQL transaction with an appropriate isolation level.   This kind of highly-temporal value must not be maintained in any sort of global variable.   If you do that, you will create a “random, un-reproducible, yet very fatal” bug of the very, very worst kind.

Replies are listed 'Best First'.
Re^2: Global dbh and inserts
by SleepyJay (Beadle) on Feb 19, 2014 at 16:23 UTC

    Exactly what I was thinking, yes. Thanks guys! Sounds like I'm not insane (about this stuff, at least).

    I think I need to understand the Apache::DBI features better.

    Thanks

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (7)
As of 2024-04-23 11:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found