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');
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.