NAME

DBIx::DBO::Common - Common routines and variables exported to all DBO classes.

DESCRIPTION

This module automatically exports ALL the methods and variables for use in the other DBO modules.

do

$dbo->do($statement)         or die $dbo->dbh->errstr;
$dbo->do($statement, \%attr) or die $dbo->dbh->errstr;
$dbo->do($statement, \%attr, @bind_values) or die ...

This provides access to DBI do method.

dbh

The read-write DBI handle.

rdbh

The read-only DBI handle, or if there is no read-only connection, the read-write DBI handle.