> -----Original Message-----
> From: Angelo Marcos Rigo [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, September 11, 2002 6:46 AM
> To: [EMAIL PROTECTED]
> Subject: perl and Oracle
> 
> 
>       Hi!
> 
>       I have a oracle database in a windows 2000 machine
>       and other machine with linux/apache webserver,
> 
>       i want to acess         that oracle/windows machine 
> from this linux webserver
>       let my users  authenthicate and then see their data 
> stored at this oracle,
>       in my company website. 
> 
>       It can be done? there is more than one way to do that?
>       actually just one way will be great.

You should use Perl's DBI module. For drivers, you have two choices:

1. DBD::Oracle. This driver will require Oracle client software on the Linux
box (which I think you can get), and will use Oracle SQL*Net as the network
transport.

2. DBD::Proxy. This is nice if you can't get Oracle client software for
Linux (or don't want to). Here you set up a proxy "listener" on the Windows
box and connect from the Linux box using the DBD::Proxy transport, which
requires no special libraries or drivers on the client side.

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

Reply via email to