DBD::CSVを使用してcsvデータを表示しています。私が持っているコードは次のとおりです。
#! perl
use strict;
use warnings;
use DBI;
my $dbh = DBI->connect("dbi:CSV:", undef, undef, {
f_dir => ".",
f_ext => ".txt/r",
f_lock => 2,
csv_eol => "\n",
csv_sep_char => "|",
csv_quote_char => '"',
csv_escape_char => '"',
csv_class => "Text::CSV_XS",
csv_null => 1,
csv_tables => {
info => {
file => "countries.txt"
}
},
FetchHashKeyName => "NAME_lc",
}) or die $DBI::errstr;
$dbh->{csv_tables}->{countries} = {
skip_first_row => 0,
col_names => ["a","b","c","d"],
raw_header => 1,
};
my $sth = $dbh->prepare ("select * from countries limit 1");
$sth->execute;
while (my @row = $sth->fetchrow_array) {
print join " ", @row;
print "\n"
}
countries.txtファイルは次のようになります。
ISO_COUNTRY|COUNTRY_NAME|REGION_CODE|REGION_NAME
AF|Afghanistan|A|Asia
AX|"Aland Islands"|E|Europe
AL|Albania|E|Europe
しかし、このスクリプトを実行すると、
AF Afghanistan A Asia
私はそれを返したかった:
ISO_COUNTRY COUNTRY_NAME REGION_CODE REGION_NAME
DBD :: CSVモジュールを使用してこれを実現する方法を知っている人はいますか?
もう1つの質問は、col_names属性設定が有効にならなかった理由です。以下を返すようにするにはどうすればよいですか?
a b c d