Help for this page

Select Code to Download


  1. or download this
    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)
    
  2. or download this
    $db=new Win32::ODBC($DSN);    
    and run a query:
    ...
    $db->FetchRow();
    %hash = $db->DataHash;
    $db->Close();