branches/DBIx-Class-current/ : trivial test first commit ; removed trailing whitespac...
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Storage / DBI / Oracle.pm
CommitLineData
843f8ecd 1package DBIx::Class::Storage::DBI::Oracle;
2
3use strict;
4use warnings;
5
aaba9524 6use Carp::Clan qw/^DBIx::Class/;
843f8ecd 7
286f32b3 8use base qw/DBIx::Class::Storage::DBI::MultiDistinctEmulation/;
843f8ecd 9
10# __PACKAGE__->load_components(qw/PK::Auto/);
11
d4f16b21 12sub _dbh_last_insert_id {
13 my ($self, $dbh, $source, $col) = @_;
ca48cd7d 14 my $seq = ($source->column_info($col)->{sequence} ||= $self->get_autoinc_seq($source,$col));
0680ac39 15 my $sql = 'SELECT ' . $seq . '.currval FROM DUAL';
d4f16b21 16 my ($id) = $dbh->selectrow_array($sql);
75d07914 17 return $id;
843f8ecd 18}
19
d4f16b21 20sub _dbh_get_autoinc_seq {
21 my ($self, $dbh, $source, $col) = @_;
22
23 # look up the correct sequence automatically
24 my $sql = q{
25 SELECT trigger_body FROM ALL_TRIGGERS t
26 WHERE t.table_name = ?
27 AND t.triggering_event = 'INSERT'
28 AND t.status = 'ENABLED'
29 };
0680ac39 30
31 # trigger_body is a LONG
32 $dbh->{LongReadLen} = 64 * 1024 if ($dbh->{LongReadLen} < 64 * 1024);
33
34 my $sth = $dbh->prepare($sql);
35 $sth->execute( uc($source->name) );
36 while (my ($insert_trigger) = $sth->fetchrow_array) {
37 return uc($1) if $insert_trigger =~ m!(\w+)\.nextval!i; # col name goes here???
38 }
39 croak "Unable to find a sequence INSERT trigger on table '" . $source->name . "'.";
40}
41
843f8ecd 42sub get_autoinc_seq {
d4f16b21 43 my ($self, $source, $col) = @_;
ca48cd7d 44
d4f16b21 45 $self->dbh_do($self->can('_dbh_get_autoinc_seq'), $source, $col);
843f8ecd 46}
47
099049b5 48sub columns_info_for {
49 my ($self, $table) = @_;
50
dd3583f2 51 $self->next::method(uc($table));
099049b5 52}
53
54
843f8ecd 551;
56
75d07914 57=head1 NAME
843f8ecd 58
59DBIx::Class::Storage::DBI::Oracle - Automatic primary key class for Oracle
60
61=head1 SYNOPSIS
62
63 # In your table classes
64 __PACKAGE__->load_components(qw/PK::Auto Core/);
65 __PACKAGE__->set_primary_key('id');
66 __PACKAGE__->sequence('mysequence');
67
68=head1 DESCRIPTION
69
70This class implements autoincrements for Oracle.
71
72=head1 AUTHORS
73
74Andy Grundman <andy@hybridized.org>
75
76Scott Connelly <scottsweep@yahoo.com>
77
78=head1 LICENSE
79
80You may distribute this code under the same terms as Perl itself.
81
82=cut