Changing to mariadb java client
[appc.git] / appc-dispatcher / appc-dispatcher-common / appc-data-access-lib / src / main / java / org / openecomp / appc / dao / util / DBUtils.java
index 520af4f..c4b7880 100644 (file)
@@ -1,10 +1,11 @@
 /*-
  * ============LICENSE_START=======================================================
- * openECOMP : APP-C
+ * ONAP : APPC
  * ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights
- *                                             reserved.
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
+ * Copyright (C) 2017 Amdocs
+ * =============================================================================
  * 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
@@ -16,6 +17,8 @@
  * 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.
+ * 
+ * ECOMP is a trademark and service mark of AT&T Intellectual Property.
  * ============LICENSE_END=========================================================
  */
 
@@ -28,7 +31,7 @@ import org.openecomp.appc.configuration.ConfigurationFactory;
 
 @Deprecated
 public class DBUtils {
-       private static final String JDBC_DRIVER = "com.mysql.jdbc.Driver";
+       private static final String JDBC_DRIVER = "org.mariadb.jdbc.Driver";
        private static final Configuration configuration = ConfigurationFactory.getConfiguration();
        static {
                try {
@@ -40,7 +43,7 @@ public class DBUtils {
        }
 
        public static Connection getConnection(String schema) throws SQLException {
-               DriverManager.registerDriver(new com.mysql.jdbc.Driver());
+               DriverManager.registerDriver(new org.mariadb.jdbc.Driver());
                String dbURL = configuration.getProperty(String.format("org.openecomp.appc.db.url.%s", schema), "");
                String userName = configuration.getProperty(String.format("org.openecomp.appc.db.user.%s", schema), "");
                String password = configuration.getProperty(String.format("org.openecomp.appc.db.pass.%s", schema), "");