Venerable monks,
I'm looking for a module that will cache a database handle for me and correctly handle when the program forks. I know DBIx::Class does this, but I don't need or want the ache of defining a schema and such, just the handle.
I have a program that uses a database. In it, I have a simple function to get a connection to the database.
sub dbh {
my ($u,$p) = ('user',':)');
my $dbh = DBI->connect(
"dbi:Sybase:server=sql.example.com",
$u, $p, { RaiseError => 1 },
);
$dbh->do( $initial_stuff );
$L->debug( "made new database connection $dbh" );
return $dbh;
}
That works fine. It would be easy enough to write something that caches that using a state variable.
sub dbh {
state $dbh;
if ( ! defined $dbh ) {
# blah blah bah
}
return $dbh;
}
That way I don't open up a new connection every time I need to talk to the database. Unfortunately, that will get tripped up when I fork.
I know about DBI, fork, and clone. I know how to write the code to get around this. What I want is a module that's already done it for me. Does it exist?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|