Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: How can I talk to an Access database using perl?

by btrott (Parson)
on Apr 14, 2000 at 06:31 UTC ( [id://7586]=note: print w/replies, xml ) Need Help??


in reply to How can I talk to an Access database using perl?

You can use DBD::ODBC, which is a database driver for DBI:
my $dbh = DBI->connect('dbi:ODBC:DSN', 'user', 'password');
And, I presume, you just use $dbh just as you would for any other database driver.

Or you could use Win32::ODBC:

my $Data = new Win32::ODBC("MyDSN"); $Data->Sql(SQL);

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (8)
As of 2024-04-25 15:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found