hi friends i am trying to connect teamsite with oracle using an ipl file which contains perl coding in teamsite. whenever i tried to connect it showing the following error.
Root cause:
Can't locate DBD/oracle.pm in
@INC (
@INC contains: /usr/iw-home/TeamSite/iw-perl/lib /usr/iw-home/TeamSite/iw-perl/site/lib /usr/iw-home/TeamSite/iw-perl/vendor/lib .) at //iwmnt/my-project/main/Knowledge_Center_Dev/WORKAREA/dev1/perl_test_files/menubar.ipl line 10. BEGIN failed--compilation aborted at //iwmnt/my-project/main/Knowledge_Center_Dev/WORKAREA/dev1/perl_test_files/menubar.ipl line 10.
DETAILS
com.interwoven.ui.datacapture.core.dct.InlineCallout$InlineCalloutException: Can't locate DBD/oracle.pm in
@INC (
@INC contains: /usr/iw-home/TeamSite/iw-perl/lib /usr/iw-home/TeamSite/iw-perl/site/lib /usr/iw-home/TeamSite/iw-perl/vendor/lib .) at //iwmnt/my-project/main/Knowledge_Center_Dev/WORKAREA/dev1/perl_test_files/menubar.ipl line 10.
BEGIN failed--compilation aborted at //iwmnt/my-project/main/Knowledge_Center_Dev/WORKAREA/dev1/perl_test_files/menubar.ipl line 10.
and the menubar.pl file is given below
#!/iw-home/TeamSite/iw-perl/bin/iwperl
use DBI;
$ENV{'ORACLE_HOME'} = '/u01/app/oracle/product/11.2.0/db_1';
$ENV{'PATH'} = '/u01/app/oracle/product/11.2.0/db_1';
use DBI;
use DBD:

racle;
$platform = "oracle";
$database = "mydbname";
$host = "4.****.149.xx";
$port = "1521";
$user = "myusername";
$pw = "mypasswd";
#DATA SOURCE NAME
$dsn = "dbi

racle:$database:$host:$port";
# PERL DBI CONNECT
$DBIconnect = DBI->connect($dsn, $user, $pw);
exit;
Please help me to find out the exact problem.