I have a database schema and i want to generate a document in any format(html or pdf or excel) of all the tables,stored procedures ,triggers for mysql .Please suggest a suitable too开发者_如何转开发l which can provide all the documents
Following these steps should help:
- connect to the database and retrieve data
- use an appropriate module in your programming language of choice which is able to handle formats such as HTML/PDF/XLS(X)
- organise the retrieved data in a presentable form and write to file using the module that you chose in step 2
精彩评论