in reply to DBI Module Question
$dbh = DBI->connect('$dsn,$user,$pw');Get rid of the single quotes because they do not interpolate variable values. You are passing a single literal string to connect, not 3 separate values. Try this:
$dbh = DBI->connect($dsn,$user,$pw);
|
|---|