Include impacted changes for APPC-346,APPC-348
[appc.git] / appc-dispatcher / appc-dispatcher-common / appc-data-access-lib / src / main / java / org / onap / appc / dao / util / DBUtils.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
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
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
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.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.dao.util;
26
27 import org.onap.appc.configuration.Configuration;
28 import org.onap.appc.configuration.ConfigurationFactory;
29 import java.sql.*;
30
31 /**
32  * @deprecated As of release 1802, replaced by {@link #(org.onap.appc.dao.util.dbcp.DBConnectionPool)}
33  * <p>
34  * This class provides the ability to access mysql database which has been @Deprecated because
35  * {@link #getConnection(String)} for each database request is not a good practice especially
36  * on appc performance.
37  * <p>
38  * If you would like to use appcctl (mysql database), bundle:appc-data-access-lib has created
39  * a database connection pool bean and exported as a service by using blueprint.
40  * If you would like to create a new database connection pool, refer to the way mentioned above.
41  * {@link org.onap.appc.dao.util.api.DBConnectionPoolService} has an example of how to use
42  * the connection pool.
43  */
44 @Deprecated
45 public class DBUtils {
46     private static final String JDBC_DRIVER = "org.mariadb.jdbc.Driver";
47     private static final Configuration configuration = ConfigurationFactory.getConfiguration();
48
49     static {
50         try {
51             String driver = JDBC_DRIVER;
52             Class.forName(driver);
53         } catch (ClassNotFoundException e) {
54             e.printStackTrace();
55         }
56     }
57
58     public static Connection getConnection(String schema) throws SQLException {
59         DriverManager.registerDriver(new org.mariadb.jdbc.Driver());
60         String dbURL = configuration.getProperty(String.format("org.onap.appc.db.url.%s", schema), "");
61         String userName = configuration.getProperty(String.format("org.onap.appc.db.user.%s", schema), "");
62         String password = configuration.getProperty(String.format("org.onap.appc.db.pass.%s", schema), "");
63         return DriverManager.getConnection(dbURL, userName, password);
64     }
65
66     public static boolean clearResources(ResultSet resultSet, PreparedStatement ptmt, Connection connection) {
67         boolean clearFlag = false;
68         try {
69             if (resultSet != null)
70                 resultSet.close();
71             if (ptmt != null)
72                 ptmt.close();
73             if (connection != null)
74                 connection.close();
75             clearFlag = true;
76         } catch (SQLException e) {
77
78         }
79         return clearFlag;
80
81     }
82 }