in reply to How to get a db table metadata

Take a look at the $dbh->column_info() method of DBI.

-Colin.

WHITEPAGES.COM | INC

Replies are listed 'Best First'.
Re^2: How to get a db table metadata
by tariqahsan (Beadle) on Jun 09, 2005 at 17:54 UTC
    Got it done by using $dbh->table_info("", $schema, $table_name, "TABLE");

    Thank you all!

Re^2: How to get a db table metadata
by davidrw (Prior) on Jun 09, 2005 at 17:11 UTC
    also be sure too look at methods specific to DBD::Oracle