1 package DBIx::Class::Storage::DBI::Pg;
8 use base qw/DBIx::Class::Storage::DBI/;
10 # __PACKAGE__->load_components(qw/PK::Auto/);
12 # Warn about problematic versions of DBD::Pg
13 warn "DBD::Pg 1.49 is strongly recommended"
14 if ($DBD::Pg::VERSION < 1.49);
17 my ($self,$source,$col) = @_;
18 my $seq = ($source->column_info($col)->{sequence} ||= $self->get_autoinc_seq($source,$col));
19 $self->dbh_do(sub { shift->last_insert_id(undef,undef,undef,undef, {sequence => $seq}) } );
23 my ($self,$source,$col) = @_;
25 my @pri = $source->primary_columns;
26 my ($schema,$table) = $source->name =~ /^(.+)\.(.+)$/ ? ($1,$2)
27 : (undef,$source->name);
31 while (my $col = shift @pri) {
32 my $info = $dbh->column_info(undef,$schema,$table,$col)->fetchrow_hashref;
33 if (defined $info->{COLUMN_DEF} and $info->{COLUMN_DEF} =~
34 /^nextval\(+'([^']+)'::(?:text|regclass)\)/)
37 return $seq =~ /\./ ? $seq : $info->{TABLE_SCHEM} . "." . $seq; # may need to strip quotes -- see if this works
48 sub datetime_parser_type { return "DateTime::Format::Pg"; }
54 DBIx::Class::Storage::DBI::Pg - Automatic primary key class for PostgreSQL
58 # In your table classes
59 __PACKAGE__->load_components(qw/PK::Auto Core/);
60 __PACKAGE__->set_primary_key('id');
61 __PACKAGE__->sequence('mysequence');
65 This class implements autoincrements for PostgreSQL.
69 Marcus Ramberg <m.ramberg@cpan.org>
73 You may distribute this code under the same terms as Perl itself.