I'm running a simple script using ActivePerl as follow:
====================================================
#!/usr/bin/perl
#########################################
#
# This script is connecting ODBC
##########################################
#

#use strict;
use DBI;

my $dbh = DBI->connect(dbi:ADO:TAS_Database)
 or die "Can't connect to ADO database";

exit;
======================================================
but I got the follow error:
"Can't locate DBI.pm in @INC (@INC contains: C:/Perl/lib C:/Perl/site/lib .)
at E:\test
is that mean I need to install DBI in my local drive? If so, where I could
download that part? Thanks

Angela


Reply via email to