2  * ============LICENSE_START=======================================================
 
   4  * ================================================================================
 
   5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 
   6  * ================================================================================
 
   7  * Copyright (C) 2017 Amdocs
 
   8  * =============================================================================
 
   9  * Licensed under the Apache License, Version 2.0 (the "License");
 
  10  * you may not use this file except in compliance with the License.
 
  11  * You may obtain a copy of the License at
 
  13  *      http://www.apache.org/licenses/LICENSE-2.0
 
  15  * Unless required by applicable law or agreed to in writing, software
 
  16  * distributed under the License is distributed on an "AS IS" BASIS,
 
  17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  18  * See the License for the specific language governing permissions and
 
  19  * limitations under the License.
 
  21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 
  22  * ============LICENSE_END=========================================================
 
  25 package org.onap.appc.dao.util;
 
  27 import com.att.eelf.configuration.EELFLogger;
 
  28 import com.att.eelf.configuration.EELFManager;
 
  29 import org.onap.appc.configuration.Configuration;
 
  30 import org.onap.appc.configuration.ConfigurationFactory;
 
  34  * @deprecated As of release 1802, replaced by {@link #(org.onap.appc.dao.util.dbcp.DBConnectionPool)}
 
  36  * This class provides the ability to access mysql database which has been @Deprecated because
 
  37  * {@link #getConnection(String)} for each database request is not a good practice especially
 
  38  * on appc performance.
 
  40  * If you would like to use appcctl (mysql database), bundle:appc-data-access-lib has created
 
  41  * a database connection pool bean and exported as a service by using blueprint.
 
  42  * If you would like to create a new database connection pool, refer to the way mentioned above.
 
  43  * {@link org.onap.appc.dao.util.api.DBConnectionPoolService} has an example of how to use
 
  44  * the connection pool.
 
  47 public class DBUtils {
 
  48     private static final EELFLogger logger = EELFManager.getInstance().getLogger(DBUtils.class);
 
  49     private static final String JDBC_DRIVER = "org.mariadb.jdbc.Driver";
 
  50     private static final Configuration configuration = ConfigurationFactory.getConfiguration();
 
  54             String driver = JDBC_DRIVER;
 
  55             Class.forName(driver);
 
  56         } catch (ClassNotFoundException e) {
 
  57             logger.error(e.getMessage());
 
  61     public static Connection getConnection(String schema) throws SQLException {
 
  62         DriverManager.registerDriver(new org.mariadb.jdbc.Driver());
 
  63         String dbURL = configuration.getProperty(String.format("org.onap.appc.db.url.%s", schema), "");
 
  64         String userName = configuration.getProperty(String.format("org.onap.appc.db.user.%s", schema), "");
 
  65         String password = configuration.getProperty(String.format("org.onap.appc.db.pass.%s", schema), "");
 
  66         return DriverManager.getConnection(dbURL, userName, password);
 
  69     public static boolean clearResources(ResultSet resultSet, PreparedStatement ptmt, Connection connection) {
 
  70         boolean clearFlag = false;
 
  72             if (resultSet != null)
 
  76             if (connection != null)
 
  79         } catch (SQLException e) {
 
  80             logger.error(e.getMessage());