Database-independant create and drop functions
use DBIx::DataSource qw( create_database drop_database ); create_database( $data_source, $username, $password ) or warn $DBIx::DataSource::errstr; drop_database( $data_source, $username, $password ) or warn $DBIx::DataSource::errstr;
This module implements create_database and drop_database functions for databases. It aims to provide a common interface to database creation and deletion regardless of the actual database being used.
Currently supported databases are MySQL and PostgreSQL. Assistance adding support for other databases is welcomed and relatively simple - see DBIx::DataSource::Driver.
Create the database specified by the given \s-1DBI\s0 data source.
Drop the database specified by the given \s-1DBI\s0 data source.
Ivan Kohler <[email protected]>
Copyright (c) 2000 Ivan Kohler Copyright (c) 2000 Mail Abuse Prevention System \s-1LLC\s0 All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
If \s-1DBI\s0 data sources were objects, these functions would be methods.
DBIx::DataSource::Driver, DBIx::DataSource::mysql, DBIx::DataSource::Pg, \s-1DBI\s0