DBD-CSV
view release on metacpan or search on metacpan
0.52 - 2018-04-05, H.Merijn Brand
* Dot-in-inc (cpantesters) - I missed two
0.51 - 2018-03-24, H.Merijn Brand
* Dot-in-inc (cpantesters)
0.50 - 2018-03-21, H.Merijn Brand
* Explain more about header folding
* It's 2017
* BOM handling
* Some documentation enhancements
* Ignore DBI_DSN if it is not CSV
* It's 2018
* Test with perl-5.26, DBI-1.641, SQL::Statement-1.412, and
Text::CSV_XS-1.35
0.49 - 2016-05-12, H.Merijn Brand
* Simplified test-table-name generation
* Prefer quote_empty over quote_always for size (Text::CSV_XS => 1.18)
* Add CONTRIBUTING.md
lib/DBD/CSV.pm view on Meta::CPAN
distinguish between the empty string and C<undef> or C<NULL>. You cannot
reset it with a false value. You can pass it to connect, or set it later:
$dbh = DBI->connect ("dbi:CSV:", "", "", { csv_null => 1 });
$dbh->{csv_null} = 1;
=item csv_bom
X<csv_bom>
With this option set, the CSV parser will try to detect BOM (Byte Order Mark)
in the header line. This requires L<Text::CSV_XS> version 1.22 or higher.
$dbh = DBI->connect ("dbi:CSV:", "", "", { csv_bom => 1 });
$dbh->{csv_bom} = 1;
=item csv_tables
X<csv_tables>
This hash ref is used for storing table dependent metadata. For any
( run in 0.641 second using v1.01-cache-2.11-cpan-e9daa2b36ef )