Perl Singleton Objects
This is a quick introduction to perl Singleton objects.
A singleton object is an object that is only instantiated
once throughout an application.
Singleton Uses
Singletons can be used for many things. If you only want one
database connection for a particular application, or a limited
number of connections a singleton database class can handle
managing your open connections.
How to implement
The following is an example of how to put together a
database object that opens a database connection and returns
an existing connection to the caller.This allows your userid/password
to be set in a single location as well. You don't have to have every
piece of code that accesses the database use userid/password. Just use the
DBConnector object and then issue your database calls.
package DBconnector;
my $singleton;
sub new {
my $class = shift;
$singleton ||= bless {}, $class;
}
sub connect {
my $self = shift;
if (exists $self->{dbh}) {
$self->{dbh};
} else {
my $connection = "dbi:mysql:host=$self->{host} \
dbname=$self->{name}";
$self->{dbh} = DBI->connect($connection, \
$self->{user},$self->{password});
}
}
Summary
There are many ways to use singletons. This is just a basic example, but
provides what is needed to create a singleton object.
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.