in reply to Re^4: Perl Oracle Database Connections remain ESTABLISHED!!
in thread Perl Oracle Database Connections remain ESTABLISHED!!
I suspect that there's there's a copy with a connection, but the diconnect is not available. UPDATE: I was updating the thread while perrin was replying. It probably won't affect what he says, as his answer still applies to the updated version#!/usr/local/bin/perl -w use DBI; use strict; use diagnostics; sub emulate_sub { my $dbh; sub connect { $dbh = DBI->connect('dbi:Oracle:rdb1', 'scott', 'tiger') || die DBI::errstr; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Perl Oracle Database Connections remain ESTABLISHED!!
by perrin (Chancellor) on Jan 04, 2006 at 03:36 UTC |