Cleanup and add basic docs for PK::Auto::DB2
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / PK / Auto / Oracle.pm
1 package DBIx::Class::PK::Auto::Oracle;
2
3 use strict;
4 use warnings;
5
6 use Carp qw/croak/;
7
8 use base qw/DBIx::Class/;
9
10 __PACKAGE__->load_components(qw/PK::Auto/);
11
12 sub last_insert_id {
13   my $self = shift;
14   $self->get_autoinc_seq unless $self->{_autoinc_seq};
15   my $sql = "SELECT " . $self->{_autoinc_seq} . ".currval FROM DUAL";
16   my ($id) = $self->result_source->storage->dbh->selectrow_array($sql);
17   return $id;  
18 }
19
20 sub get_autoinc_seq {
21   my $self = shift;
22   
23   # return the user-defined sequence if known
24   if ($self->sequence) {
25     return $self->{_autoinc_seq} = $self->sequence;
26   }
27   
28   # look up the correct sequence automatically
29   my $dbh = $self->result_source->storage->dbh;
30   my $sql = qq{
31     SELECT trigger_body FROM ALL_TRIGGERS t
32     WHERE t.table_name = ?
33     AND t.triggering_event = 'INSERT'
34     AND t.status = 'ENABLED'
35   };
36   # trigger_body is a LONG
37   $dbh->{LongReadLen} = 64 * 1024 if ($dbh->{LongReadLen} < 64 * 1024);
38   my $sth = $dbh->prepare($sql);
39   $sth->execute( uc($self->result_source->name) );
40   while (my ($insert_trigger) = $sth->fetchrow_array) {
41     if ($insert_trigger =~ m!(\w+)\.nextval!i ) {
42       $self->{_autoinc_seq} = uc($1);
43     }
44   }
45   unless ($self->{_autoinc_seq}) {
46     croak "Unable to find a sequence INSERT trigger on table '" . $self->_table_name . "'.";
47   }
48 }
49
50 1;
51
52 =head1 NAME 
53
54 DBIx::Class::PK::Auto::Oracle - Automatic primary key class for Oracle
55
56 =head1 SYNOPSIS
57
58   # In your table classes
59   __PACKAGE__->load_components(qw/PK::Auto::Oracle Core/);
60   __PACKAGE__->set_primary_key('id');
61
62 =head1 DESCRIPTION
63
64 This class implements autoincrements for Oracle.
65
66 =head1 AUTHORS
67
68 Andy Grundman <andy@hybridized.org>
69
70 Scott Connelly <scottsweep@yahoo.com>
71
72 =head1 LICENSE
73
74 You may distribute this code under the same terms as Perl itself.
75
76 =cut