in reply to Re: Column info request.
in thread Column info request.

how about:
my $dbfields = $dbh->selectcol_arrayref ("SHOW COLUMNS FROM table" +);
is even more MySQL'ish and gives all the details of the fields.

jdtoronto