Subject: | on_connect_call not being invoked for existing handle |
This code used to work with DBC 08109:
ETL::Pipeline::Schema->connect(
sub { $args->{dbh} },
{on_connect_do => $on_connect_do}
);
However the on_connect_do doesn't seem to be invoked. However this works:
ETL::Pipeline::Schema->connect(
'dbi:Oracle:', $user, $password, {RaiseError => 1},
{on_connect_do => $on_connect_do}
);
I've tried on_connect_info to set our DateTime prefs and that doesn't
work either. We've resolved temporarily by rolling DBIx::Class and
SQL::Abstract back to 08109 and 1.56 respectively... but it'd be good to
be on the latest and greatest....