Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: RFC: Databases made easy

by JavaFan (Canon)
on Mar 22, 2011 at 11:52 UTC ( [id://894776]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
      $dbh->{PrintError} = 0;
    
  2. or download this
    If you turn "RaiseError" on then you'd normally turn "PrintError" off.
    
  3. or download this
    my $entries =
        eval {
    ...
            eval {$dbh->rollback ()} or $err .= "\n   Rollback processing 
    +failed!";
            die $err;
        };
    
  4. or download this
    my $entries;
    eval {
    ...
    } or do {
        ... rollback and die ...
    };
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://894776]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (6)
As of 2024-03-28 08:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found