DBIx::DataSource::mysql - MySQL driver for DBIx::DataSource


DBIx-DataSource documentation  | view source Contained in the DBIx-DataSource distribution.

Index


NAME

Top

DBIx::DataSource::mysql - MySQL driver for DBIx::DataSource

SYNOPSIS

Top

  use DBIx::DataSource;

  use DBIx::DataSource qw( create_database drop_database );

  create_database( "dbi:mysql:$database", $username, $password )
    or warn $DBIx::DataSource::errstr;

  create_database( "dbi:mysql:database=$database;host=$hostname;port=$port",
                   $username, $password )
    or warn $DBIx::DataSource::errstr;

  drop_database( "dbi:mysql:$database", $username, $password )
    or warn $DBIx::DataSource::errstr;

  drop_database( "dbi:mysql:database=$database;host=$hostname;port=$port",
                  $username, $password )
    or warn $DBIx::DataSource::errstr;

DESCRIPTION

Top

This is the MySQL driver for DBIx::DataSource.

AUTHOR

Top

Ivan Kohler <ivan-dbix-datasource@420.am>

COPYRIGHT

Top

BUGS

Top

SEE ALSO

Top

DBIx::DataSource::Driver, DBIx::DataSource, DBD::mysql, DBI


DBIx-DataSource documentation  | view source Contained in the DBIx-DataSource distribution.