in reply to Using DBI to make connection to a database
Here's how we connect to a MS SQL Server at work:
my $db = 'DBI'->connect("DBI:ODBC:Driver={SQL Server};Server=$serv +er;Database=$database", $user, $secret, @options);
Have you installed DBD::ODBC?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Using DBI to make connection to a database
by campbell (Beadle) on Jul 02, 2015 at 12:44 UTC | |
by Corion (Patriarch) on Jul 02, 2015 at 13:05 UTC |