Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
use strict; use warnings; use Win32::ODBC; use Win32::OLE; use Win32::OLE::Const 'Microsoft DAO'; my $db = "\\\\myinfoserver\\myaccess2000.mdb"; my $dsn = "tes"; $db = new Win32::ODBC($dsn) || die "Cant open: $!"; print "Connecting to database source $dsn\n"; $db->Close(); exit;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Close Access db using Perl
by shmem (Chancellor) on Nov 02, 2006 at 19:43 UTC | |
|
Re: Close Access db using Perl
by GrandFather (Saint) on Nov 02, 2006 at 19:36 UTC | |
by astroboy (Chaplain) on Nov 03, 2006 at 13:29 UTC | |
|
Re: Close Access db using Perl
by astroboy (Chaplain) on Nov 03, 2006 at 13:37 UTC |