Dear everyone,
Anyone know what kind of tool/software can automatic convert the existing Mysql table structure to a "table stuture documentation".
Do you want to be able to print out the table structure on you PHP page? You can just issue "show columns from table" or describe table and parse those results just like any other result set. Is that what you mean?
---John Holmes...
Or if you have telnet/ssh access:
mysqldump database_name -d
This dumps the structure of the database and all it's tables as SQL statements.