Home  >  Article  >  Database  >  Introduction to 3 tools for exporting data dictionary documents from Mysql database to Word or HTML

Introduction to 3 tools for exporting data dictionary documents from Mysql database to Word or HTML

一个新手
一个新手Original
2017-10-19 09:58:314008browse

Recently, it is necessary to export the Mysql database into a Word document. This article records several available tools and methods after research:

  1. Alibaba Cloud DMS Tool Export

  • Applicable to Mysql database stored in Alibaba Cloud RDS service

  • Export format support: Word, Excel, PDF

  • Disadvantages: The free version of DMS can only export 10 table documents at one time; if you need to export all tables, you can export them multiple times (10 tables will be imported and 10 tables will be deleted)

  • Entrance: Alibaba Cloud Backend-》RDS-》Select Database-》Login to Database-》Top Navigation Bar (Tools)-》Generate Document (Word, Excel, PDF)

  • Screenshot of the exported Word document effect:

  • DBImport

    • ##Screenshot of the exported HTML document effect:

  • A Jar Package tool

    • Download address: http://download.csdn.net/download/s297165331/9433652

    • #After downloading, you only need to configure config.xml, and then double-click the jar package to execute it

      <?xml version="1.0" encoding="UTF-8"?>
      <!DOCTYPE configuration
              PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
              "http://mybatis.org/dtd/mybatis-3-config.dtd">
      
      <configuration>
      
             <environments default="development">
                    <environment id="development">
                           <transactionManager type="jdbc"/>
                           <dataSource type="POOLED">
                                  <property name="driver" value="com.mysql.jdbc.Driver"/>
                                  <property name="url" value="jdbc:mysql://127.0.0.1:3306/mysql"/>
                                  <property name="username" value="root"/>
                                  <property name="password" value="root"/>
                           </dataSource>
                    </environment>
             </environments>
             <mappers>
                    <mapper resource="com/zhonghua/databasetools/mapper/mymapper.xml" />
             </mappers>
      </configuration>

    The above is the detailed content of Introduction to 3 tools for exporting data dictionary documents from Mysql database to Word or HTML. For more information, please follow other related articles on the PHP Chinese website!

    Statement:
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn