All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cq.database.helper.DBConfig Maven / Gradle / Ivy

The newest version!
package cq.database.helper;

public interface DBConfig {
    String DEFAULT_MYSQL_DRIVER = "com.mysql.jdbc.Driver";
    String DEFAULT_ORACLE_DRIVER = "oracle.jdbc.OracleDriver";

    String driver();

    String url();

    String user();

    String password();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy