Revision history for DBIx::Class
+ - Fixed DBIC_TRACE debug filehandles to set ->autoflush(1)
+ - Fixed circular dbh<->storage in HandleError with weakref
+
0.07999_06 2007-06-13 04:45:00
- tweaked Row.pm to make last_insert_id take multiple column names
- Fixed DBIC::Storage::DBI::Cursor::DESTROY bug that was
use Scalar::Util qw/weaken/;
use Carp::Clan qw/^DBIx::Class/;
+use IO::File;
__PACKAGE__->mk_group_accessors('simple' => qw/debug debugobj schema/);
$fh = IO::File->new('>&STDERR');
}
+ $fh->autoflush(1);
$new->debugfh($fh);
$new->debug(1) if $debug_env;
use SQL::Abstract::Limit;
use DBIx::Class::Storage::DBI::Cursor;
use DBIx::Class::Storage::Statistics;
-use IO::File;
use Scalar::Util qw/blessed weaken/;
__PACKAGE__->mk_group_accessors('simple' =>