in reply to Extracting data using WIN32::ODBC
Unless you have a very specific reason to use Win32::ODBC, use DBI instead - there is more documentation and a larger community to provide support.#!perl -w use strict; use DBI; my $dsn = "some system DSN or DSN-less connection"; my $dbh = DBI->connect( "dbi:ODBC:$dsn",'me','mypass',{RaiseError=>1} ); # ...
|
|---|