com.github.xiaoyuge5201.config.DriverConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datasource-spring-boot-starter Show documentation
Show all versions of datasource-spring-boot-starter Show documentation
数据库连接工具,查询mysql、oracle、sqlserver、postgresql的数据表以及字段信息;同时支持导出数据库设计文档
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";
}