Install DBI and DBD::ODBC. Then you should be able to do something like
this:
use DBI;
my $dbh = DBI->connect("dbi:ODBC:driver=Microsoft Access Driver
(*.mdb);dbq=PLACE_DB_NAME_HERE", '','') || die "$DBI::errstr\n";
my $sthCreateTable = $dbh->prepare( q{CREATE TABLE 'MAIN' (server
varchar(50),service varchar(50),username varchar(50))} || die $dbh->errstr;
$dbh->execute || die $dbh->errstr;
-----Original Message-----
From: Bob X [mailto:[EMAIL PROTECTED]
Sent: Wednesday, October 29, 2003 1:46 PM
To: [EMAIL PROTECTED]
Subject: Re: What's the Perl driver for MSAccess?
"Scott E Robinson" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Can anyone tell me what the Perl driver for MSAccess is called and how
> to use it to read a table?
>
> Thanks,
>
> Scott
>
> Scott E. Robinson
> SWAT Team
> UTC Onsite User Support
> RR-690 -- 281-654-5169
> EMB-2813N -- 713-656-3629
>
DBD::ODBC
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]