Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Connect to MS Access w/o ODBC, DSN, from Win32

by mortis (Pilgrim)
on Dec 12, 2001 at 06:08 UTC ( [id://131147]=note: print w/replies, xml ) Need Help??


in reply to Connect to MS Access w/o ODBC, DSN, from Win32

On Win32 you can connect directly to the access mdb file, but it still is through DBD::ODBC. The following code is a summarizaion of code I've used to manipulate pre-existing ms access databases:
use strict; use warnings; use DBI; my $file = 'c:/path/to/access/database.mdb'; my $dsn = 'dbi:ODBC:driver=Microsoft Access Driver (*.mdb);dbq=' . $fi +le; my $dbh = DBI->connect($dsn,undef,undef);
I'm not 100% sure this will solve your immediate problems, but it has worked for me when there was no system wide DSN for the access database. I do beleive this solution is documented somewhere in the DBI/DBD pod documentation.

Also, for the creation of a new MDB file (which you can't otherwise do without resorting to Win32 calls or ADO), I created a simple empty database with Access, and then serialized it using MIME::Base64 and stuffed the serialized version into a module so it was easy to just create a new blank db:

use strict; use warnings; use BlankMDB; BlankMDB->writeToFile('c:/path/to/file.mdb');

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://131147]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (5)
As of 2024-04-23 21:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found