Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: Can I talk to an MS Access DB using Perl?

by Asim (Hermit)
on Feb 02, 2000 at 19:07 UTC ( [id://2732]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use strict;
    use DBI;
    
    ...
    while (my $results = $sth->fetchrow_hashref) {
        push @sites, $results;
    }
    
  2. or download this
    use Win32::ODBC;
    
    my @rows;
    ...
        my %data = $db->DataHash();
        push @rows, {%data};
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (5)
As of 2024-03-29 13:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found