The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

DBIx::ShowCaller - adds a Perl caller info to the SQL command

SYNOPSIS

        use DBIx::ShowCaller;
        my $dbh = DBIx::ShowCaller->connect('dbi:Oracle:prod',
                'test', 'test', { 'RaiseError' => 1 });
        
        # and follow as with normal DBI
        $dbh->do('insert into jezek values (?)', {}, 45);
        # will call (and log in V$SQL)
                /* script.pl at line 7 */
                insert into jezek values (:p1)

DESCRIPTION

This module can be used instead of the DBI module. For each SQL command that is prepared (both using $dbh->prepare and via do, selectall_* and the like) it prepends a /* */ style comment containing information about file and line that called that prepare/selectall_*/other method. Thus it makes it easier to see where a particular SQL command came from.

Only database servers that log the whole SQL command (like Oracle or MySQL) can make reasonable use of this. Also, if you call the same SQL from different places of your code, the comment will be different and the SQL server won't be able to reuse parsed info. Consider the speed tradeoff here.

VERSION

0.80

AUTHOR

(c) 2000 Jan Pazdziora, adelton@fi.muni.cz, http://www.fi.muni.cz/~adelton/ at Faculty of Informatics, Masaryk University in Brno, Czech Republic

All rights reserved. This package is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

SEE ALSO

DBI(1)