y*********r 发帖数: 3 | 1 I need help with accessing Oracle (Solaris) thru perl DBI. Any suggestions are
appreciated. Here is the description.
Oracle to be accessed uses kerberos authentication (via Operating System,
Solaris here). I need to use Perl DBI to query the DB. I can access the DB
using DBI for non-kerberos users (see the following test program) but could
not do it for kerberos users (what arguments should I pass in to connect?).
Any one can give me suggestions? Thanks.
The test program
#!/usr/local/bin/perl5 - | x***u 发帖数: 9 | 2 If it is an operation system authentication, then you need not and
should not use password.
My suggestion is
...
$dbh = DBI->connect($data_source, "user", "")
...
are
【在 y*********r 的大作中提到】 : I need help with accessing Oracle (Solaris) thru perl DBI. Any suggestions are : appreciated. Here is the description. : Oracle to be accessed uses kerberos authentication (via Operating System, : Solaris here). I need to use Perl DBI to query the DB. I can access the DB : using DBI for non-kerberos users (see the following test program) but could : not do it for kerberos users (what arguments should I pass in to connect?). : Any one can give me suggestions? Thanks. : The test program : #!/usr/local/bin/perl5 -
|
|