in reply to How can I talk to an Access database using perl?
And, I presume, you just use $dbh just as you would for any other database driver.my $dbh = DBI->connect('dbi:ODBC:DSN', 'user', 'password');
Or you could use Win32::ODBC:
my $Data = new Win32::ODBC("MyDSN"); $Data->Sql(SQL);
|
|---|