Remove commented methods/fields in APPC
[appc.git] / appc-dispatcher / appc-dispatcher-common / appc-data-access-lib / src / main / java / org / openecomp / appc / dao / util / DBUtils.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : APP-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                                              reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.openecomp.appc.dao.util;
23
24 import java.sql.*;
25
26 import org.openecomp.appc.configuration.Configuration;
27 import org.openecomp.appc.configuration.ConfigurationFactory;
28
29 @Deprecated
30 public class DBUtils {
31         private static final String JDBC_DRIVER = "com.mysql.jdbc.Driver";
32         private static final Configuration configuration = ConfigurationFactory.getConfiguration();
33         static {
34                 try {
35                         String driver = JDBC_DRIVER;
36                         Class.forName(driver);
37                 } catch (ClassNotFoundException e) {
38                         e.printStackTrace();
39                 }
40         }
41
42         public static Connection getConnection(String schema) throws SQLException {
43                 DriverManager.registerDriver(new com.mysql.jdbc.Driver());
44                 String dbURL = configuration.getProperty(String.format("org.openecomp.appc.db.url.%s", schema), "");
45                 String userName = configuration.getProperty(String.format("org.openecomp.appc.db.user.%s", schema), "");
46                 String password = configuration.getProperty(String.format("org.openecomp.appc.db.pass.%s", schema), "");
47                 return DriverManager.getConnection(dbURL, userName, password);
48         }
49
50         public static boolean clearResources(ResultSet resultSet, PreparedStatement ptmt, Connection connection) {
51                 boolean clearFlag = false;
52                 try {
53                         if (resultSet != null)
54                                 resultSet.close();
55                         if (ptmt != null)
56                                 ptmt.close();
57                         if (connection != null)
58                                 connection.close();
59                         clearFlag = true;
60                 } catch (SQLException e) {
61
62                 }
63                 return clearFlag;
64
65         }
66 }