Hello
I am new to DBI programming. I have install DBI module in my Win NT
machine by using 'ppm' and 'install DBI' command.
Now I am trying to connect to msaccess database. I have written
following code
use DBI;
my $dbh = DBI -> connect ('dbi:msaccess:perl ;Machinename' ,'username','
password')
or die "Couldn't connect to database:" . DBI->errstr;
...................................
But it is showing following error
"install_driver(msaccess) failed: Can't locate DBD/msaccess.pm in @INC
(@INC cont
ains: C:/Perl/lib C:/Perl/site/lib .) at (eval 1) line 3.
Perhaps the DBD::msaccess perl module hasn't been fully installed,
or perhaps the capitalisation of 'msaccess' isn't right.
Available drivers: ADO, ExampleP, Multiplex, Proxy.
at database.pl line 3 "
For that do i need to install seperate driver for msaccess . I think ADO
is bunddled with DBI.
Can any one suggest how i can solve the problem
Thanking u in advance