We have two variants
1. perl API use::Mysql;
2. DBD driver
use::DBI;
it is Correct????
Sort of. The "perl API" is not recommended. You need to install DBI and install DBD::mysql and then in the script:
use DBI;
my $dbh = DBI->connect('dbi:mysql ...-- Jeff
