> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, December 12, 2001 3:58 AM
> To: [EMAIL PROTECTED]
> Subject: hello!! please help me!!
> 
> 
> hello!! 
> I'm a begginer of perl. so i have many problomes.(my english 
> is poor.I'm sorry) 
> please help me!!!
> 
> my sever's config
>  - window 2000 server and i installed activeperl 5.6.1 (i got 
> it www.activeperl.com)
>  - I installed oracle client8.0 (the remote db server 
> consiste of oracle8.0)
> 
> 
> and  I want  connect the remote oracle DB server. 
> so I set the config ODBC and I installed DBI.ppd&DBD-oracle8.ppd 
> 
> but I can't connect DB server. and I have this error message
> c:\sodel\perl dbiexcel_2.cgi
> DBD::ORACLE initialisation failed; can't locate object method 
> "driver" via package
> DBD::ORACLE" <perhaps you forgot to load DBD::ORACLE"? at 
> c:\perl\site\lib\DBI.pm
> line 115 perhaps the capitalisation of DBA 'oracle' isn't 
> right at dbiexcel_2.cgi line
> 13
> 
> I don't know how to get the right module and how to make right config.
> activeperl 5.6.1 is right to the windows2000 server? 
> and I have to find modules to connect oracle DB?

The driver name should be spelled "Oracle" (note capitalization):

   $dbh = DBI->connect('dbi:Oracle:sid', 'username', 'password') or die;

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to