org.aposin.licensescout.database.DatabaseUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of licensescout-maven-plugin Show documentation
Show all versions of licensescout-maven-plugin Show documentation
Maven plug-in using the LicenseScout Core for standard Maven builds. Can write reports as CSV, Text or HTML using configurable templates and can write results to a database.
/**
* Copyright 2019 Association for the promotion of open-source insurance software and for the establishment of open interface standards in the insurance industry (Verein zur Förderung quelloffener Versicherungssoftware und Etablierung offener Schnittstellenstandards in der Versicherungsbranche)
*
* 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 org.aposin.licensescout.database;
import java.sql.Connection;
import java.sql.Driver;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.util.Enumeration;
import org.aposin.licensescout.configuration.DatabaseConfiguration;
import org.aposin.licensescout.util.ILFLog;
/**
*
*/
public class DatabaseUtil {
private DatabaseUtil() {
// EMPTY
}
/**
* @param databaseConfiguration
* @return a database connection
* @throws SQLException
*/
public static Connection getConnection(final DatabaseConfiguration databaseConfiguration) throws SQLException {
return DriverManager.getConnection(databaseConfiguration.getJdbcUrl(), databaseConfiguration.getUsername(),
databaseConfiguration.getPassword());
}
/**
* Logs the registered JDBC drivers.
*
* This method is intended for debugging if JDBC drivers are not loaded as expected.
*
* @param log
*/
public static void dumpDrivers(ILFLog log) {
final Enumeration registeredDrivers = DriverManager.getDrivers();
log.info("DriverManager registered drivers:");
while (registeredDrivers.hasMoreElements()) {
Driver driver = registeredDrivers.nextElement();
log.info("" + driver.toString());
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy