Do you advise using the Win32::ODBC module. We created a System DSN for our Microsoft SQL 2000 Server which is located externally on the network. In the examples i have read, they assume that the Server was located locally.
This is the code i have been using:
use Win32::ODBC;
my($db) = new Win32::ODBC("dsn=$dsn_name; uid=$username; pwd=$password") || die "Could not connect to database\n";
$db->Sql("SELECT * FROM Tbl_Job");
while ($db->FetchRow()) {
print "Hello World\n";
}
Thanks again for your help.
Daniel