Here is a simple connection string that I had found when doing the same activity
use DBI # you would need the ODBC drivers installed along with DBD::ODBC my $dsn = 'dbi:ODBC:driver=Microsoft Access Driver (*.mdb);'."dbq=$path"; my $dbh = DBI -> connect( $dsn ); ... Adam -----Original Message----- From: dannel G [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 20, 2003 3:24 AM To: [EMAIL PROTECTED] Subject: ACCESS MDB FILE...,? Hello all, I have a mdb file(ms access) on linux server. Is there any method to access this mdb file from perl? Thank you
