How to install obsolete Perl CPAN modules

Viewed 151

I need to get a program up and running and at this point in time cannot upgrade the obsolete Perl module.

In particular, I want to install this:

DBD-mysql-3.0008

Usage:

use Msql;

$dbh = Msql->connect($host);

How can I get this module working? In the long term of course the software will be rewritten to use:

DBD::mysql

1 Answers
Related