[jOOQ/jOOQ#14499] Added package-info.java

This commit is contained in:
Lukas Eder 2023-01-16 10:48:20 +01:00
parent 66c0073301
commit fe0be5c94d
2 changed files with 29 additions and 2 deletions

View File

@ -1,5 +1,19 @@
/**
* This package contains compatibility classes to bridge between JDBC 4.0 and
* JDBC 4.1.
* JDBC tooling.
* <p>
* This package contains
* <ul>
* <li>Compatibility classes to bridge between JDBC 4.0, 4.1, 4.2, 4.3 (see
* {@link org.jooq.tools.jdbc.JDBC41Connection})</li>
* <li>The {@link org.jooq.tools.jdbc.BatchedConnection} that allows for
* batching statements transparently on a JDBC level</li>
* <li>A {@link org.jooq.tools.jdbc.DefaultConnection} that implements all the
* API and delegates to another connection, useful as base class for other
* utilities</li>
* <li>A {@link org.jooq.tools.jdbc.MockConnection}, which mocks the JDBC API
* based on fixed data</li>
* <li>A {@link org.jooq.tools.jdbc.LoggingConnection}, which logs all
* statements that are executed by it</li>
* </ul>
*/
package org.jooq.tools.jdbc;

View File

@ -0,0 +1,13 @@
/**
* R2DBC tooling.
* <p>
* This package contains
* <ul>
* <li>A {@link org.jooq.tools.r2dbc.DefaultConnection} that implements all the
* API and delegates to another connection, useful as base class for other
* utilities</li>
* <li>A {@link org.jooq.tools.r2dbc.LoggingConnection}, which logs all
* statements that are executed by it</li>
* </ul>
*/
package org.jooq.tools.r2dbc;