| DBIx::DataSource::Pg - PostgreSQL driver for DBIx::DataSource | 
DBIx::DataSource::Pg - PostgreSQL driver for DBIx::DataSource
use DBIx::DataSource;
use DBIx::DataSource qw( create_database drop_database );
  create_database( "dbi:Pg:dbname=$dbname", $username, $password )
    or warn $DBIx::DataSource::errstr;
  create_database( "dbi:Pg:dbname=$dbname;host=$host;port=$port",
                   $username, $password )
    or warn $DBIx::DataSource::errstr;
  drop_database( "dbi:Pg:dbname=$dbname", $username, $password )
    or warn $DBIx::DataSource::errstr;
  drop_database( "dbi:Pg:dbname=$dbname;host=$host;port=$port",
                  $username, $password )
    or warn $DBIx::DataSource::errstr;
This is the PostgresSQL driver for DBIx::DataSource.
Ivan Kohler <ivan-dbix-datasource@420.am>
Copyright (c) 2000 Ivan Kohler Copyright (c) 2000 Mail Abuse Prevention System LLC All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
the DBIx::DataSource::Driver manpage, the DBIx::DataSource manpage, the DBD::Pg manpage, the DBI manpage
| DBIx::DataSource::Pg - PostgreSQL driver for DBIx::DataSource |