editi has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's minimum standard of quality and will not be displayed.

Replies are listed 'Best First'.
Re: DBI connection from one mechine to another mechine in perl
by runrig (Abbot) on Jun 10, 2007 at 17:12 UTC
    Did you read the documentation? The first three lines of the synopsis are:
    use DBI; $dsn = "DBI:mysql:database=$database;host=$hostname;port=$port"; $dbh = DBI->connect($dsn, $user, $password);
    Also, you don't include what the error message, if any, was in your sample.
    A reply falls below the community's threshold of quality. You may see it by logging in.