The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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

SEE ALSO

DBI, ResourcePool, ResourcePool::Resource, ResourcePool::Factory::DBI

AUTHOR

    Copyright (C) 2001-2004 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.