Class::DBI::Loader::Pg - Class::DBI::Loader Postgres implementation.


NAME

Class::DBI::Loader::Pg - Class::DBI::Loader Postgres implementation.


SYNOPSIS

  use Class::DBI::Loader;
  # $loader is a Class::DBI::Loader::Pg
  my $loader = Class::DBI::Loader->new(
    dsn => "dbi:Pg:dbname=dbname",
    user => "postgres",
    password => "",
    namespace => "Data",
  );
  my $class = $loader->find_class('film'); # $class => Data::Film
  my $obj = $class->retrieve(1);


DESCRIPTION

please see the Class::DBI::Loader manpage


AUTHOR

IKEBE Tomohiro <ikebe@edge.co.jp>

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.


SEE ALSO

the Class::DBI::Loader manpage

 Class::DBI::Loader::Pg - Class::DBI::Loader Postgres implementation.