Common Attributes
Common attributes are those that can be queried and set within both database and statement handles. This section discusses some of the most commonly used attributes, including:
- PrintError
The
PrintError
attribute, when enabled, will cause the DBI to issue a warning when a DBI method returns with an error status. This functionality is extremely useful for rapid debugging of your programs, as you may not have written explicit return value checking code after every DBI statement.The printed error string lists the class of the database driver through which the DBI method was dispatched, the method that caused the error to occur, and the value of
$DBI::errstr
. The following message was generated when theprepare()
method did not successfully execute against an Oracle7 database using theDBD::Oracle
driver:DBD::Oracle::db prepare failed: ORA-00904: invalid column name (DBD: error possibly near <*> indicator at char 8 in ' SELECT <*>nname, location, mapref FROM megaliths ') at /opt/WWW/apache/cgi-bin/megalith/megadump line 79.
PrintError
uses the standard Perl function calledwarn()
to render the error message. Therefore, you could use a$SIG{_ _WARN_ _}
error handler or an error handling module such asCGI::ErrorWrap
to re-route the error messages fromPrintError
.This attribute is enabled by default.
- RaiseError
The
RaiseError
attribute is similar in style to itsPrintError
cousin, but differs slightly in operation. WhereasPrintError
simply displayed a message when ...
Get Programming the Perl DBI now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.