YAFZ has asked for the wisdom of the Perl Monks concerning the following question:
When I run the programme above I receive the following error:#! /usr/bin/perl use strict; use warnings; use Win32::ODBC; my $db; my $DSN = "DSN:IBUeMBA_DSN;UID=sa;PWD=xxxx"; if (!($db = new Win32::ODBC($DSN))) { print "Error connecting to $DSN\n"; print "Error: " . Win32::ODBC::Error() . "\n"; exit; }
Error connecting to DSN:IBUeMBA_DSN;UID=sa;PWD=xxxx Error: [911] "[Microsoft][ODBC Driver Manager] Data source name not f +ound and no default driver specified"
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Help needed for Win32::ODBC
by olivierp (Hermit) on Oct 22, 2004 at 13:22 UTC | |
by YAFZ (Pilgrim) on Oct 22, 2004 at 13:55 UTC | |
by terra incognita (Pilgrim) on Oct 22, 2004 at 15:08 UTC | |
|
Re:Help needed for Win32::ODBC
by Anonymous Monk on Oct 22, 2004 at 14:19 UTC |