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

com.github.ltsopensource.monitor.access.mysql.MysqlAbstractJdbcAccess Maven / Gradle / Ivy

There is a newer version: 1.7.0
Show newest version
package com.github.ltsopensource.monitor.access.mysql;

import com.github.ltsopensource.core.cluster.Config;
import com.github.ltsopensource.store.jdbc.JdbcAbstractAccess;

/**
 * @author Robert HG ([email protected]) on 3/9/16.
 */
public abstract class MysqlAbstractJdbcAccess extends JdbcAbstractAccess {

    public MysqlAbstractJdbcAccess(Config config) {
        super(config);
        createTable(readSqlFile("sql/mysql/" + getTableName() + ".sql"));
    }

    protected abstract String getTableName();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy