On Wed, Feb 21, 2007 at 04:25:54PM +0000, Martin J. Evans wrote:
> Hi,
> 
> I have DBIx::Log4perl which is currently connected to a DBD::Oracle. In 
> DBIx::Log4perl::st::execute I want to call DBD::Oracle's dbms_get_line 
> which is usually (from applications) called like this:
> 
> @lines = $dbh->func('dbms_output_get');
> 
> As I'm in st::execute I have a $sth and can get hold of a $dbh.

I'd expect this to work:

  $dbh = $sth->FETCH('Database');
  @lines = $dbh->func('dbms_output_get');

Tim.

Reply via email to