Hi, I've been looking around a bit for some code to handle DBI connect() failures nicely, I want my program to continue running, doing something alternate because of a connection failure flag somehow being set?
$dbh = DBI->connect('dbi:Oracle:', qq{$bu_username/$bu_passwd@(DESCRIP +TION= (ADDRESS=(PROTOCOL=TCP)(HOST= $bu_host)(PORT=$bu_port)) (CONNECT_DATA=(SID=$bu_sid)))}, ""); if ( undef $dbh ) { print LF "Cannot connect to database!\n"; &log_send_mail; exit; } else { print "Connection to $bu_sid successful\n"; }
How can I do this gracefully? How do I set {RaiseError => 1} with my connect string above? I certainly don't want a string of errors and die happening. I've also unsuccessfully tried by checking the value of a parameter being set via || on the connect statement. I've also checked out: http://labs.redhat.com/cturner/DBI_AdvancedTalk_2002/

In reply to Graceful handling of DBI connect errors' by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.