"Joe" == Joe Junkin <jjun...@datacrawler.com> writes:
Joe> Hi all.
Joe> I am desperately looking for a way to read the mysql indexes from DBI. I
can see
Joe> that msql has a function for ListIndex, but it is not for MySQL. Is
ListIndex on
Joe> the module agenda? If not, how can I get this information from within Perl?
Joe> I have an administrative interface into mysql and need to be able to
read/edit
Joe> all of the indexes for a table.
Hi!
In MySQL you can do almost anything with SQL commands (as opposite to
mSQL where you have different interfaces)
Try:
SHOW INDEX from table_name
Regards,
Monty