| DBIx-Connector documentation | Contained in the DBIx-Connector distribution. |
DBIx::Connector::Driver::Pg - PostgreSQL-specific connection interface
This subclass of DBIx::Connector::Driver provides PostgreSQL-specific implementations of the following methods:
savepointreleaserollback_toThis module was written and is maintained by:
It is based on code written by:
Copyright (c) 2009-2010 David E. Wheeler. Some Rights Reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| DBIx-Connector documentation | Contained in the DBIx-Connector distribution. |
package DBIx::Connector::Driver::Pg; use strict; use warnings; use base 'DBIx::Connector::Driver'; our $VERSION = '0.45'; sub savepoint { my ($self, $dbh, $name) = @_; $dbh->pg_savepoint($name); } sub release { my ($self, $dbh, $name) = @_; $dbh->pg_release($name); } sub rollback_to { my ($self, $dbh, $name) = @_; $dbh->pg_rollback_to($name); } 1; __END__