logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

DBIx::DataSource::Pg - PostgreSQL driver for DBIx::DataSource

Author

Bugs

Description

       This is the PostgreSQL driver for DBIx::DataSource.

Name

       DBIx::DataSource::Pg - PostgreSQL driver for DBIx::DataSource

See Also

       DBIx::DataSource::Driver, DBIx::DataSource, DBD::Pg, DBI

perl v5.34.0                                       2022-06-13                                DataSource::Pg(3pm)

Synopsis

         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;

See Also