nz.co.gregs.dbvolution.databases.MariaDB Maven / Gradle / Ivy
/*
* Copyright 2014 Gregory Graham.
*
* 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 nz.co.gregs.dbvolution.databases;
import java.sql.SQLException;
import java.sql.Statement;
import javax.sql.DataSource;
import nz.co.gregs.dbvolution.databases.definitions.MariaDBDefinition;
/**
* DBDatabase tweaked for a MariaDB Database.
*
* Support DBvolution at
* Patreon
*
* @author Gregory Graham
*/
public class MariaDB extends DBDatabase {
private final static String MARIADBDRIVERNAME = "com.mariadb.jdbc.Driver";
public static final long serialVersionUID = 1l;
/**
* Creates a {@link DBDatabase } instance for the data source.
*
* @param ds ds
*/
public MariaDB(DataSource ds) {
super(new MariaDBDefinition(), ds);
}
/**
* Create a MariaDB instance of DBDatabase for the database with the supplied
* JDBC URL, using the username and password to login.
*
* @param jdbcURL jdbcURL
* @param username username
* @param password password
*/
public MariaDB(String jdbcURL, String username, String password) {
super(new MariaDBDefinition(), MARIADBDRIVERNAME, jdbcURL, username, password);
}
/**
* Create a MariaDB instance of DBDatabase for the database on the supplied
* server and port, using the username and password to login.
*
* @param server server
* @param password password
* @param port port
* @param databaseName databaseName
* @param username username
*/
public MariaDB(String server, long port, String databaseName, String username, String password) {
super(new MariaDBDefinition(),
MARIADBDRIVERNAME,
"jdbc:mariadb://" + server + ":" + port + "/" + databaseName,
username,
password);
this.setDatabaseName(databaseName);
}
@Override
public DBDatabase clone() throws CloneNotSupportedException {
return super.clone(); //To change body of generated methods, choose Tools | Templates.
}
@Override
protected void addDatabaseSpecificFeatures(Statement statement) throws SQLException {
;
}
}