When attempting connection to two databases, if the first succeeds and the second fails, the program hangs, prints "Ok\nUhoh\nDone\n" and never exits.
If I remove the $no_raise_error option, the failed connection prints 'ORA-01017: invalid username/password' message and seg faults.
When the first fails and the second succeeds, prints "Uhoh\nOk\nDone\n" and exits normally.
Anyone else see this? Should I eval wrap the connects? Use a different module?
#!/usr/bin/perl
use strict;
use DBIx::Simple;
my $no_raise_error = {
RaiseError => 0,
};
my @valid_keys = (
"dbi:Oracle:this_db",
"valid-username",
'valid-password',
);
my @bogus_keys = (
"dbi:Oracle:that_db",
"bogus-username",
'bogus-password',
);
my $db = do_connect(\@valid_keys);
($db) and print "Ok\n";
my $db = do_connect(\@bogus_keys, $no_raise_error);
($db) and print "Ok\n";
print "Done\n";
sub do_connect {
my $keys = shift;
my $opts = shift;
my $db = DBIx::Simple->connect(@$keys, $opts) or do {
printf "Uhoh\n";
return;
};
return $db;
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.