![JAR search and dependency download from the Maven repository](/logo.png)
org.threadly.db.AbstractArcDriver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arcCommon Show documentation
Show all versions of arcCommon Show documentation
JDBC driver for AWS Aurora databases.
package org.threadly.db;
/**
* Small abstract driver for defining constants for threadly/arc drivers.
*/
public abstract class AbstractArcDriver implements java.sql.Driver {
public static final int ARC_MAJOR_VERSION = 0;
public static final int ARC_MINOR_VERSION = 8;
@Override
public int getMajorVersion() {
return ARC_MAJOR_VERSION;
}
@Override
public int getMinorVersion() {
return ARC_MINOR_VERSION;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy