org.enodeframework.mysql.MysqlPublishedVersionStore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enode-mysql Show documentation
Show all versions of enode-mysql Show documentation
MySQL driver for enodeframework.
package org.enodeframework.mysql;
import org.enodeframework.jdbc.DBConfiguration;
import org.enodeframework.jdbc.JDBCPublishedVersionStore;
import javax.sql.DataSource;
/**
* @author [email protected]
*/
public class MysqlPublishedVersionStore extends JDBCPublishedVersionStore {
public MysqlPublishedVersionStore(DataSource dataSource) {
super(dataSource);
}
public MysqlPublishedVersionStore(DataSource dataSource, DBConfiguration setting) {
super(dataSource, setting);
}
}