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

See the Class::DBI::Loader manpage, the Class::DBI::Loader::Generic manpage.


SEE ALSO

the Class::DBI::Loader manpage, the Class::DBI::Loader::Generic manpage

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