-
-
24 Nov 2013 23:33:45 UTC
- Distribution: CGI-Application-Plugin-DBH
- Module version: 4.04
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues (0)
- Testers (908 / 0 / 0)
- Kwalitee
Bus factor: 0- 89.76% Coverage
- License: perl_5
- Activity
24 month- Tools
- Download (14.7KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
NAME
CGI::Application::Plugin::DBH - Easy DBI access from CGI::Application
VERSION
version 4.04
SYNOPSIS
use CGI::Application::Plugin::DBH (qw/dbh_config dbh/); sub cgiapp_init { my $self = shift; # use the same args as DBI->connect(); $self->dbh_config($data_source, $username, $auth, \%attr); # or to use more than one dbh $self->dbh_config('my_handle', [ $data_source, $user, $auth, \%attr ]); $self->dbh_config('my_other_handle', [ $data_source, $user, $auth, \%attr ]); } sub my_run_mode { my $self = shift; my $date = $self->dbh->selectrow_array("SELECT CURRENT_DATE"); # again with a named handle $date = $self->dbh('my_handle')->selectrow_array("SELECT CURRENT_DATE"); # OR ... my $dbh = $self->dbh; # again with a named handle $dbh = $self->dbh('my_other_handle'); my $date = $dbh->selectrow_array("SELECT CURRENT_DATE"); }
DESCRIPTION
CGI::Application::Plugin::DBH adds easy access to a DBI database handle to your CGI::Application modules. Lazy loading is used to prevent a database connection from being made if the
dbh
method is not called during the request. In other words, the database connection is not created until it is actually needed.METHODS
dbh()
my $date = $self->dbh->selectrow_array("SELECT CURRENT_DATE"); # again with a named handle $date = $self->dbh('my_handle')->selectrow_array("SELECT CURRENT_DATE"); # OR ... my $dbh = $self->dbh; # again with a named handle $dbh = $self->dbh('my_other_handle'); my $date = $dbh->selectrow_array("SELECT CURRENT_DATE");
This method will return the current DBI database handle. The database handle is created on the first call to this method, and any subsequent calls will return the same handle.
dbh_config()
sub cgiapp_init { my $self = shift; # use the same args as DBI->connect(); $self->dbh_config($data_source, $username, $auth, \%attr); # or to use more than one dbh $self->dbh_config('my_handle', [ $data_source, $user, $auth, \%attr ]); $self->dbh_config('my_other_handle', [ $data_source, $user, $auth, \%attr ]); # ...or use some existing handle you have $self->dbh_config($DBH); $self->dbh_config('my_handle', $DBH); # this works too # Use a callback to create your owh handle that is still lazy loaded $self->dbh_config(sub { DBI->connect_cached(); }); }
Used to provide your DBI connection parameters. You can either pass in an existing DBI database handle, or provide the usual parameters used for DBI->connect().
The recommended place to call
dbh_config
is in thecgiapp_init
stage of CGI::Application. If this method is called after the database handle has already been accessed, then it will die with an error message.Automatic configuration using CGI::App instance parameters
An alternative to explicitly calling
dbh_config
in your application is to rely on the presence of specific instance parameters that allow the plugin to configure itself.If you set the CGI::App parameter
::Plugin::DBH::dbh_config
to an array reference the contents of that array will be used as parameters todbh_config
(if it has not been explicitly called before).The code in the synopsis can be rewritten as
use CGI::Application::Plugin::DBH (qw/dbh/); # no longer a need to import dbh_config sub cgiapp_init { # you do not need to do anything here } sub my_run_mode { # this part stays unchanged .... }
and in the instance script ( or instance configuration file, if you have)
$app->param('::Plugin::DBH::dbh_config' => [ $data_source, $username, $auth, \%attr ] );
If you want to configure more than one handle, set up a hash with the handle names as keys:
$app->param('::Plugin::DBH::dbh_config' => { my_handle => [ $data_source, $username, $auth, \%attr ] , my_other_handle => [ $data_source, $username, $auth, \%attr ] } );
Automatic configuration with DBI environment variables
If you do not set any parameters, and do not call
dbh_config
, this plugin checks to see if you set the DBI environment variableDBI_DSN
. If present, this DSN will be used for the default handle. Note that the DBI documentation does not encourage using this method (especially in the context of web applications), that you will most likely have to also setDBI_USER
andDBI_PASS
, and that this can only be used for the default handle.dbh_default_name()
sub my_runmode { my $self = shift; my $old_handle_name = $self->dbh_default_name('my_handle'); $self->some_legacy_code(); # some_legacy_code() will get "my_handle" # when it calls $self->dbh() without parameters $self->dbh_default_name($old_handle_name); # Return to normal. }
Can be used to alter the name of the handle that is returned by dbh() when called with no parameters. It can even be used to alter the name used for the unnamed handle if called before dbh_config().
Using this method is completely optional. If you don't have a use for it don't use it. Internally the handle name "__cgi_application_plugin_dbh" is used to keep track of the unnamed handle unless it is changed by dbh_default_name() before a call to dbh_config() without a name parameter.
SEE ALSO
Ima::DBI is similar, but has much more complexity and features.
CGI::Application, DBI, CGI::Application::Plugin::ValidateRM
AUTHOR
Mark Stosberg <mark@stosberg.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by Mark Stosberg.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Module Install Instructions
To install CGI::Application::Plugin::DBH, copy and paste the appropriate command in to your terminal.
cpanm CGI::Application::Plugin::DBH
perl -MCPAN -e shell install CGI::Application::Plugin::DBH
For more information on module installation, please visit the detailed CPAN module installation guide.