/usr/share/perl5/Class/DBI/Pg.pm is in libclass-dbi-pg-perl 0.09-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | # $Id: /mirror/Class-DBI-Pg/lib/Class/DBI/Pg.pm 1980 2006-07-09T18:42:00.901499Z daisuke $
#
# Copyright (c) Ikebe Tomohiro
# Sebastian Riedel
# 2006 Daisuke Maki
# All rights reserved.
package Class::DBI::Pg;
use strict;
require Class::DBI;
use base 'Class::DBI';
use vars qw($VERSION);
$VERSION = '0.09';
sub set_up_table {
my ( $class, $table, $opts ) = @_;
$opts ||= {};
my $dbh = $class->db_Main;
my $catalog = "";
if ( $class->pg_version >= 7.3 ) {
$catalog = 'pg_catalog.';
}
# find primary key
my $sth = $dbh->prepare(<<"SQL");
SELECT indkey FROM ${catalog}pg_index
WHERE indisprimary=true AND indrelid=(
SELECT oid FROM ${catalog}pg_class
WHERE relname = ?)
SQL
$sth->execute($table);
my %prinum = map { $_ => 1 } split ' ', ($sth->fetchrow_array || '');
$sth->finish;
# find all columns
$sth = $dbh->prepare(<<"SQL");
SELECT a.attname, a.attnum
FROM ${catalog}pg_class c, ${catalog}pg_attribute a
WHERE c.relname = ?
AND a.attnum > 0 AND a.attrelid = c.oid
ORDER BY a.attnum
SQL
$sth->execute($table);
my $columns = $sth->fetchall_arrayref;
$sth->finish;
# find SERIAL type.
# nextval('"table_id_seq"'::text)
$sth = $dbh->prepare(<<"SQL");
SELECT adsrc FROM ${catalog}pg_attrdef
WHERE
adrelid=(SELECT oid FROM ${catalog}pg_class WHERE relname=?)
SQL
$sth->execute($table);
my ($nextval_str) = $sth->fetchrow_array;
$sth->finish;
# the text representation for nextval() changed between 7.x and 8.x
my $sequence;
if ($nextval_str) {
if ($class->pg_version() >= 8.1) {
# hackish, but oh well...
($sequence) =
$nextval_str =~ m!^nextval\('"?([^"']+)"?'::regclass\)!i ?
$1 :
$nextval_str =~ m!^nextval\(\('"?([^"']+)"?'::text\)?::regclass\)!i ?
$1 :
undef;
} else {
($sequence) = $nextval_str =~ m!^nextval\('"?([^"']+)"?'::text\)!;
}
}
my ( @cols, @primary );
foreach my $col (@$columns) {
# skip dropped column.
next if $col->[0] =~ /^\.+pg\.dropped\.\d+\.+$/;
push @cols, $col->[0];
next unless $prinum{ $col->[1] };
push @primary, $col->[0];
}
@primary = @{ $opts->{Primary} } if $opts->{Primary};
if (!@primary) {
require Carp;
Carp::croak("$table has no primary key");
}
if ($opts->{Primary} && (! $opts->{ColumnGroup} || $opts->{ColumnGroup} eq 'All')) {
$opts->{ColumnGroup} = 'Essential';
}
$class->table($table);
$class->columns( Primary => @primary );
$class->columns( ($opts->{ColumnGroup} || 'All') => @cols );
$class->sequence($sequence) if $sequence;
}
sub pg_version {
my $class = shift;
my %args = @_;
my $dbh = $class->db_Main;
my $sth = $dbh->prepare("SELECT version()");
$sth->execute;
my ($ver_str) = $sth->fetchrow_array;
$sth->finish;
my ($ver) =
$args{full_version} ?
$ver_str =~ m/^PostgreSQL ([\d\.]{5})/ :
$ver_str =~ m/^PostgreSQL ([\d\.]{3})/;
return $ver;
}
__END__
=head1 NAME
Class::DBI::Pg - Class::DBI extension for Postgres
=head1 SYNOPSIS
use strict;
use base qw(Class::DBI::Pg);
__PACKAGE__->set_db(Main => 'dbi:Pg:dbname=dbname', 'user', 'password');
__PACKAGE__->set_up_table('film');
=head1 DESCRIPTION
Class::DBI::Pg automate the setup of Class::DBI columns and primary key
for Postgres.
select Postgres system catalog and find out all columns, primary key and
SERIAL type column.
create table.
CREATE TABLE cd (
id SERIAL NOT NULL PRIMARY KEY,
title TEXT,
artist TEXT,
release_date DATE
);
setup your class.
package CD;
use strict;
use base qw(Class::DBI::Pg);
__PACKAGE__->set_db(Main => 'dbi:Pg:dbname=db', 'user', 'password');
__PACKAGE__->set_up_table('cd');
This is almost the same as the following way.
package CD;
use strict;
use base qw(Class::DBI);
__PACKAGE__->set_db(Main => 'dbi:Pg:dbname=db', 'user', 'password');
__PACKAGE__->table('cd');
__PACKAGE__->columns(Primary => 'id');
__PACKAGE__->columns(All => qw(id title artist release_date));
__PACKAGE__->sequence('cd_id_seq');
=head1 METHODS
=head2 set_up_table TABLENAME HASHREF
Declares the Class::DBI class specified by TABLENAME. HASHREF can specify
options to when setting up the table.
=over 4
=item ColumnGroup
You can specify the column group that you want your columns to be in.
$class->set_up_table($table, { ColumnGroup => 'Essential' });
The default is 'All'
=item Primary
Overrides primary key setting. This can be useful when working with views
instead of tables.
=back
=head2 pg_version
Returns the postgres version that you are currently using.
=head1 AUTHOR
Daisuke Maki C<dmaki@cpan.org>
=head1 AUTHOR EMERITUS
Sebastian Riedel, C<sri@oook.de>
IKEBE Tomohiro, C<ikebe@edge.co.jp>
=head1 LICENSE
This library is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.
=head1 SEE ALSO
L<Class::DBI> L<Class::DBI::mysql> L<DBD::Pg>
=cut
|