software  
home
software
papers
service
fun
potw
contact
credits

perldoc ResourcePool::Resource::DBI

NAME

ResourcePool::Resource::DBI - A ResourcePool wrapper for DBI

SYNOPSIS

use ResourcePool::Resource::DBI;

my $resource =  ResourcePool::Resource::DBI->new(
                       $data_source, 
                       $username, 
                       $auth, 
                       \%attr);

DESCRIPTION

This class is used by the ResourcePool internally to create DBI connections. Its called by the corresponding ResourcePool::Factory::DBI object which passes the parameters needed to establish the DBI connection.

The only thing which has to been known by an application developer about this class is the implementation of the precheck() and postcheck() methods:

$resource->precheck

Performs a $dbh->ping().

Returns: Returns true on success and false on fail

$resource->postcheck

Performs a rollback() on the session if AutoCommit is off.

Returns: always true

SEEALSO

AUTHOR

Copyright (C) 2001-2003 by Markus Winand <mws@fatalmind.com>

This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.

(c) 2007 by mws Last modified: Mon Apr  9 14:12:55 2007