|
NAMEResourcePool::Resource::DBI - A ResourcePool wrapper for DBISYNOPSISuse ResourcePool::Resource::DBI; my $resource = ResourcePool::Resource::DBI->new( $data_source, $username, $auth, \%attr); DESCRIPTIONThis 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->precheckPerforms a $dbh->ping().Returns: Returns true on success and false on fail $resource->postcheckPerforms a rollback() on the session if AutoCommit is off.Returns: always true SEE ALSODBI, ResourcePool, ResourcePool::Resource, ResourcePool::Factory::DBIAUTHORCopyright (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.
Visit the GSP FreeBSD Man Page Interface. |