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

com.baomidou.mybatisplus.extension.toolkit.JdbcUtils Maven / Gradle / Ivy

There is a newer version: 3.5.7
Show newest version
/*
 * Copyright (c) 2011-2014, hubin ([email protected]).
 * 

* Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at *

* http://www.apache.org/licenses/LICENSE-2.0 *

* Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package com.baomidou.mybatisplus.extension.toolkit; import org.apache.ibatis.logging.Log; import org.apache.ibatis.logging.LogFactory; import com.baomidou.mybatisplus.annotation.DbType; import com.baomidou.mybatisplus.core.toolkit.Assert; import com.baomidou.mybatisplus.core.toolkit.StringUtils; /** *

* JDBC 工具类 *

* * @author nieqiurong * @since 2016-12-05 */ public class JdbcUtils { private static final Log logger = LogFactory.getLog(JdbcUtils.class); /** *

* 根据连接地址判断数据库类型 *

* * @param jdbcUrl 连接地址 * @return */ public static DbType getDbType(String jdbcUrl) { Assert.isFalse(StringUtils.isEmpty(jdbcUrl), "Error: The jdbcUrl is Null, Cannot read database type"); if (jdbcUrl.startsWith("jdbc:mysql:") || jdbcUrl.startsWith("jdbc:cobar:") || jdbcUrl.startsWith("jdbc:log4jdbc:mysql:")) { return DbType.MYSQL; } else if (jdbcUrl.startsWith("jdbc:mariadb:")) { return DbType.MARIADB; } else if (jdbcUrl.startsWith("jdbc:oracle:") || jdbcUrl.startsWith("jdbc:log4jdbc:oracle:")) { return DbType.ORACLE; } else if (jdbcUrl.startsWith("jdbc:sqlserver:") || jdbcUrl.startsWith("jdbc:microsoft:")) { return DbType.SQL_SERVER2005; } else if (jdbcUrl.startsWith("jdbc:sqlserver2012:")) { return DbType.SQL_SERVER; } else if (jdbcUrl.startsWith("jdbc:postgresql:") || jdbcUrl.startsWith("jdbc:log4jdbc:postgresql:")) { return DbType.POSTGRE_SQL; } else if (jdbcUrl.startsWith("jdbc:hsqldb:") || jdbcUrl.startsWith("jdbc:log4jdbc:hsqldb:")) { return DbType.HSQL; } else if (jdbcUrl.startsWith("jdbc:db2:")) { return DbType.DB2; } else if (jdbcUrl.startsWith("jdbc:sqlite:")) { return DbType.SQLITE; } else if (jdbcUrl.startsWith("jdbc:h2:") || jdbcUrl.startsWith("jdbc:log4jdbc:h2:")) { return DbType.H2; } else if (jdbcUrl.startsWith("jdbc:dm:") || jdbcUrl.startsWith("jdbc:log4jdbc:dm:")) { return DbType.DM; } else { logger.warn("The jdbcUrl is " + jdbcUrl + ", Mybatis Plus Cannot Read Database type or The Database's Not Supported!"); return DbType.OTHER; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy