Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Connecting to Oracle via Perl
> Environment is Oracle 8.1.6 NT 4.0
>
> What is the best way to connect to Oracle using Perl? I do not want to
> hard-code password in script if not necessary. I could not find a way to
> embed
> in dsn creation. Any suggestions/working examples on how to achieve this
> is appreciated? I do not have any kind of password server.
If you use shell-based authentication then you can connect via DBI and DBD::Oracle with:
my $dbh = DBI->connect( "dbi:Oracle:$db", '', '' );
(i.e., empty string for both user and pass). $db would be the tns name for whatever you're connecting to (see the DBD::Oracle manpages for examples).
-- Steven Lembark 2930 W. Palmer Workhorse Computing Chicago, IL 60647 +1 800 762 1582 -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Steven Lembark INET: lembark_at_wrkhors.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Wed Apr 03 2002 - 10:23:28 CST
![]() |
![]() |