=head1 NAME RDF::Trine::Store::DBI::Pg - PostgreSQL subclass of DBI store. =head1 VERSION This document describes RDF::Trine::Store::DBI::Pg version 0.111 =head1 SYNOPSIS use RDF::Trine::Store::DBI::Pg; =for author to fill in: Brief code example(s) here showing commonest usage(s). This section will be as far as many users bother reading so make it as educational and exeplary as possible. =head1 DESCRIPTION =for author to fill in: Write a full description of the module and its features here. Use subsections (=head2, =head3) as appropriate. =head1 DEPENDENCIES =for author to fill in: A list of all the other modules that this module relies upon, including any restrictions on versions, and an indication whether the module is part of the standard Perl distribution, part of the module's distribution, or must be installed separately. ] None. =cut package RDF::Trine::Store::DBI::Pg; use strict; use warnings; no warnings 'redefine'; use base qw(RDF::Trine::Store::DBI); use Scalar::Util qw(blessed reftype refaddr); our $VERSION = "0.111"; =head1 METHODS =over 4 =cut sub _column_name { my $self = shift; my @args = @_; my $col = lc(join('_', @args)); return $col; } 1; # Magic true value required at end of module __END__ =back =head1 BUGS Please report any bugs or feature requests to C, or through the web interface at L. =head1 AUTHOR Gregory Todd Williams C<< >> =head1 COPYRIGHT Copyright (c) 2006-2009 Gregory Todd Williams. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut