in reply to How to display an Access database
Do you need to use OLE? Access is a "database" so the natural way to access it in Perl is using DBI.
To open an Access database use:
# Open the database: my $dbh = DBI->connect ('dbi:ADO:Provider=Microsoft.Jet.OLEDB.4.0;Data Source=' . $db_file) +;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to display an Access database
by jobs_ron (Acolyte) on Jun 18, 2007 at 23:07 UTC | |
by GrandFather (Saint) on Jun 18, 2007 at 23:37 UTC | |
by jobs_ron (Acolyte) on Jun 18, 2007 at 23:42 UTC |