http://www.perlmonks.org?node_id=846502


in reply to CSV tab-delimited not space-delimited

I'd try csv_allow_whitespace = 1; like this:
#!/usr/bin/perl use strict; use warnings; use DBD::CSV; my $csvh = DBI->connect("DBI:CSV:f_dir=.; csv_sep_char=\t;csv_eol=\n;") or die($DBI::errstr); $csvh->{csv_allow_whitespace} = 1; $csvh->{'csv_tables'}{'csv'} = { file => 'file.csv' };