in reply to extract the Column names of a table

Take a look at fetchrow_hashref in the DBI docs.
Fetches the next row of data and returns it as a reference to a hash containing field name and field value pairs.

Replies are listed 'Best First'.
Re^2: extract the Column names of a table
by l.frankline (Hermit) on Mar 24, 2008 at 12:20 UTC

    Thanks for the response.