in reply to Re: DBI column_info question
in thread DBI column_info question

thanks for pointing me in right direction. changed my code to...
my $sth = $dbh->column_info(undef, undef, 'table1', "%"); my $col_info = $sth->fetchall_hashref('ORDINAL_POSITION');
which gives exactly what I wanted.

"thx" x 100