Subject: | Specifying extra DBI parameters with the connection_info doesn't appear to work as I'd expect |
I'm trying to specify an extra DBI parameter for the DBD driver when I
set up my Test::DBIx::Class,
use Test::DBIx::Class {
schema_class => 'AAA::BBB::DMS::Schema::DMSDB',
connect_info => ['dbi:DBDriver:cleantest','','',
{disable_sth_caching => 1} ],
}, 'Folder';
but I get the error,
# Returned Error: Can't call method "reftype" on unblessed reference at
/usr/local/lib/perl5/site_perl/5.10.1/Test/DBIx/Class/Types.pm line 66.
If I change that reftype to ref on line 66 of the file mentioned then it
appears to work as I'd expect.