How do I connect to a mssql database running on a windows machine from perl running on a unix machine?
I use
$dbh = DBI->connect('DBI:mysql:database', "$mysqlusername", "$mysqlpassword"),{RaiseError => 1};
for mysql
I'm getting confused with everything I've been reading on the net about it. Isn't there just a simple way like
$dbh = DBI->connect('DBI:mssql:database', "$mysqlusername", "$mysqlpassword"),{RaiseError => 1};
?
I use
$dbh = DBI->connect('DBI:mysql:database', "$mysqlusername", "$mysqlpassword"),{RaiseError => 1};
for mysql
I'm getting confused with everything I've been reading on the net about it. Isn't there just a simple way like
$dbh = DBI->connect('DBI:mssql:database', "$mysqlusername", "$mysqlpassword"),{RaiseError => 1};
?