Help for this page
use Win32::ODBC; $DSN = "DRIVER=Microsoft Access Driver (*.mdb);FIL=MSAccess;DriverId=2 +5;DBQ=F:/webroot/Database/db1.mdb"; (this is the + actual location of your .mdb file)
$db=new Win32::ODBC($DSN); and run a query: ... $db->FetchRow(); %hash = $db->DataHash; $db->Close();