Subject: | Use of 'croak' is deprecated at C:/Perl/site/lib/Class/DBI.pm line 950. Use '_croak' instead |
Use of 'croak' is deprecated at C:/Perl/site/lib/Class/DBI.pm line 950. Use '_croak' instead
line 950 has
$col = $class->find_column($col)
or $class->croak("$col is not a column of $class");
which should be
$col = $class->find_column($col)
or $class->_croak("$col is not a column of $class");