e.simple-jdbc.0.7.0.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simple-jdbc Show documentation
Show all versions of simple-jdbc Show documentation
Library to simplify using JDBC
/**
* Module containing a simple wrapper for the JDBC API.
*/
module org.itsallcode.jdbc {
exports org.itsallcode.jdbc;
exports org.itsallcode.jdbc.identifier;
exports org.itsallcode.jdbc.resultset;
exports org.itsallcode.jdbc.resultset.generic;
exports org.itsallcode.jdbc.dialect;
requires java.logging;
requires transitive java.sql;
uses org.itsallcode.jdbc.dialect.DbDialect;
provides org.itsallcode.jdbc.dialect.DbDialect
with org.itsallcode.jdbc.dialect.ExasolDialect, org.itsallcode.jdbc.dialect.H2Dialect;
}