Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

What is the difference between $DBI::errstr and $dbh->errstr?

by BBQ (Curate)
on May 11, 2000 at 07:40 UTC ( [id://11106]=perlquestion: print w/replies, xml ) Need Help??

BBQ has asked for the wisdom of the Perl Monks concerning the following question: (database programming)

The question says it all. While reading through perltoot, I noticed that the both look alot like (respectivly) a function call and a method call. But what of the practical use for either of them? In what do they differ?

Originally posted as a Categorized Question.

  • Comment on What is the difference between $DBI::errstr and $dbh->errstr?

Replies are listed 'Best First'.
Re: What is the difference between $DBI::errstr and $dbh->errstr
by btrott (Parson) on May 11, 2000 at 08:29 UTC
    $DBI::errstr is actually a variable, not a method call. It holds the text of the last error on any of the database handles.

    $dbh->errstr is a method call on a database handle. It returns the text of the last error from "the last driver function called," according to the DBI manpage.

    In general, you should use $dbh->errstr, unless you don't have an available database handle. For example, if you're calling DBI->connect, you're creating a database handle, so you don't actually have one to call the errstr method on. So if you're doing error checking on the connect method, you should print out $DBI::errstr if you get undefined back from connect.

    When you're doing error checking for any database handle methods (prepare, execute, etc.), you should use $dbh->errstr. (Or just set RaiseError.)

Re: What is the difference between $DBI::errstr and $dbh->errstr?
by archfool (Monk) on Jun 20, 2007 at 18:54 UTC
    As a sidenote, if you are using PL/SQL in DBD::Oracle, there is a special method for PL/SQL errors:
    my $msg = $dbh->func( 'plsql_errstr' ); die $dbh->errstr if ! defined $msg; die $msg if $msg;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (5)
As of 2024-09-20 07:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    The PerlMonks site front end has:





    Results (25 votes). Check out past polls.

    Notices?
    erzuuli‥ 🛈The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.