The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

MySQL::Hi - Credentials for MySQL/MariaDB from config files

SYNOPSIS

    my $hi = MySQL::Hi->new(
        user => $user,
        config => '/path/to/config.conf' );

    # Command line options
    my @options = $hi->get_options( $db, $mode );

    # DSN
    my ( $dsn, $user, $password ) = $hi->get_dsn();

DESCRIPTION

The module to read config with credentials for MySQL/MariaDB conection.

It does NOT do any MySQL/MariaDB connections, it is ONLY needed to read a config file and return credentials, comannd line options for MySQL/MariaDB client, or DSN for DBD::mysql driver.

METHODS

new( [user => $user,] [config => $config ] )

Creates an object.

user

Username to connect to DB. If omitted, curent username is taken.

config

Path to a cofigfile. By default it searces for the file mysqlhi.conf in user's home directory. See "Config file" in mysqlhi for config file format.

NOTE: I only tested it on Debian and Ubuntu. I have not tested it on other operating systems. As long as it uses File::HomeDir it should, in theory, work on other OSes too. If it does not, your patches are welcome.

get_options( $db[, $mode] )

Returns a list of parameters which can be directly used for the command exec:

    exec 'mysql', $hi->get_options( $db, $mode );

NOTE: exec should be used with multiple parameters. This will make sure that all parameters are passed to the command correctly, and it will run mysql directly without sh -c predicate. As a useful side effect, in the list of processes your MySQL/MariaDB client will not show password.

The method accepts two parameters: $db (database name) and $mode (Optional, used to specify credentials for a certain mod). See mysqlhi for information about modes.

get_dsn( $db[, $mode] )

Accepts the same parameter as get_credentials, Returns DSN, username and password which can be used directly in DBI-connect()>:

    DBI->conect( $hi->get_dsn( $db, $mode ) )
get_credentials( [ $db, $mode] ] )

With no param it return all parsed credentials from the config file.

If $db and $mode are provided, return a hashref with credentials for this databade in this mode.

BUGS

Not reported... Yet...

SEE ALSO

mysqlhi

AUTHOR

Andrei Pratasavitski <andrei.protasovitski@gmail.com>

LICENSE

    This script is free software; you can redistribute it and/or modify
    it under the same terms as Perl itself.