All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.xiaoyuge5201.config.DriverConstants Maven / Gradle / Ivy

Go to download

数据库连接工具,查询mysql、oracle、sqlserver、postgresql的数据表以及字段信息;同时支持导出数据库设计文档

There is a newer version: 2.1
Show newest version
package com.github.xiaoyuge5201.config;

/**
 * 数据驱动枚举类
 *
 * @author xiaoyuge
 */
public class DriverConstants {
    /**
     * mysql数据库
     */
    public static final String MYSQL = "com.mysql.jdbc.Driver";
    /**
     * Sql Server数据库
     */
    public static final String SQL_SERVER = "com.microsoft.sqlserver.jdbc.SQLServerDriver";
    /**
     * oracle数据库
     */
    public static final String ORACLE = "oracle.jdbc.driver.OracleDriver";
    /**
     *postgre sql数据库
     */
    public static final String POSTGRE_SQL = "org.postgresql.Driver";
    /**
     * 达梦数据库
     */
    public static final String DM = "dm.jdbc.driver.DmDriver";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy