* SELECTの結果からカラム名を取得 [#o8fee647]
$sth->{NAME}で取れる。

 my $sql = 'select * from member';
 my $sth = $dbh->prepare($sql);
 $sth->execute();
 my $col1 = $sth->{NAME}->[0];
 my @colums = @{$sth->{NAME}};
 print @colums;
 my @columns = @{$sth->{NAME}};
 print @columns;

** 参考 [#v5d0de64]
http://search.cpan.org/~timb/DBI-1.58/DBI.pm#NAME_uc

トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS