DBD::ODBC: crash in ping (after disconnect)

2005-01-19 Thread Steffen Goeldner
Hi Jeff, I have the following test script: use sigtrap; use DBI(); use Test::More tests = 5; my $dbh = DBI-connect or die $DBI::errstr; ok( $dbh-{$_}, $_) for 'Active'; ok( $dbh- $_ , $_) for 'ping'; ok( $dbh- $_ , $_) for 'disconnect'; ok(!$dbh-{$_}, $_) for 'Active'; ok(!$dbh-

RE: DBD::ODBC: crash in ping (after disconnect)

2005-01-19 Thread Martin J. Evans
Hi, Caught a SIGSEGV at C:/opt/perl/site/lib/DBD/ODBC.pm line 208 That is the tables call in the ping method. The only time you only have an environment handle dbd_error: err_rc=-1 rc=0 s/d/e: 0/0/21631648 is when not connected to the DSN. The driver manager is supposed to handle this. How can