With MySQL I can:
- export data to XML
- export data and/or schema to SQL
But I can’t export table schema to XML. Is there some sort of pre-built mechanism or do I have to make that manually (iterating thru “show tables” and then parsing “show columns for tablexxx” ?
EDIT: No tools wanted, just mysql syntax (must dynamically run from my server code)
I didn’t find such thing, so I assume no, it isn’t. Feel free to correct me if I am wrong.