X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FStorage%2FDBI%2FOracle.pm;h=29bfce17a3aab220fa96772e79e00c69e1b2334a;hb=281719d262c5f565901fd017b6f3c12030de81e4;hp=64bf9f182b67735b1bb62f07d6ac0bd0856c455c;hpb=fed42067ab7f0a6cc76b1e0dcb8d53b900d9f640;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/lib/DBIx/Class/Storage/DBI/Oracle.pm b/lib/DBIx/Class/Storage/DBI/Oracle.pm index 64bf9f1..29bfce1 100644 --- a/lib/DBIx/Class/Storage/DBI/Oracle.pm +++ b/lib/DBIx/Class/Storage/DBI/Oracle.pm @@ -25,20 +25,6 @@ sub _rebless { } } -sub _svp_begin { - my ($self, $name) = @_; - - $self->dbh->do("SAVEPOINT $name"); -} - -# Would've implemented _svp_release here, but Oracle doesn't support it. - -sub _svp_rollback { - my ($self, $name) = @_; - - $self->dbh->do("ROLLBACK TO SAVEPOINT $name") -} - 1; =head1 NAME