Hi,
I have a quick question concerning miminmizing/passing
database connections. Basically, I have a about 3,000 lines
of code broken into various subroutines. I would like to
parse similar subroutines into packages so I can keep track
of the code. However, the way I have the program run now
is that everytime the script is instantiated, a database
connection is readied as a global variable, I then I start
calling subroutines.It looks like this..
$dbh=new db connection
#some code here that calls subroutines
sub test{
$sth=$dbh->prepare(etc..)
}
sub test2{
$sth=$dbh->prepare(etc..)
}
This way I can call multiple subroutines that use the db
without having to constantly create db connections.
If I start packaging up the subroutines and calling them
from a main script, I won't be able to maintain a global
database connection. I really want to avoid, creating an
individual db connection in each subroutine. This isn't
very efficient right? Is it acceptable to create a db
connection in the main portion of the script, then pass it
to the subroutines in the packages?
for instance,
$dhb=new db connection
Test::Package->($dbh); #call sub with db connection
Is there a better way to do this?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.