in reply to Re^2: Which xBase module?
in thread Which xBase module?

See the docs of DBI instead, the table_info() and column_info() methods. I think that's what you are looking for.

Jenda
Enoch was right!
Enjoy the last years of Rome.

Replies are listed 'Best First'.
Re^4: Which xBase module?
by lo_tech (Scribe) on Mar 27, 2012 at 16:23 UTC
    I'd second Jenda's response. DBI is has some magic that will get you what you need, most of the time. My only comment would be that calling $table->header_info() method will give you some details of the table structure of the database file.
    Well, that's my $.02 worth. No, for refunds you'll have to check our customer service department.
Re^4: Which xBase module?
by parser (Acolyte) on Mar 28, 2012 at 00:01 UTC

    Thanks Jenda.

    I have been using the base module and not the DBI version but I am already using the DBI module for MySQL in the same code base so that may make more sense.

    Cheers