I am new to using perl and am trying to read data from an ms access database.
I have opened the database and can extract data from a table with limited success.
What I have done so far is open the database using
use Win32::ODBC;
etc

Then I have the following code:
Code:
#while ($db->FetchRow())  { 
  while ($i<10) {
  $db->FetchRow() ;
    my %Data = $db->DataHash();
...