diff --git a/src/main/java/minevalley/core/api/database/StatementBuilder.java b/src/main/java/minevalley/core/api/database/StatementBuilder.java index 1fff6f4..cd45540 100644 --- a/src/main/java/minevalley/core/api/database/StatementBuilder.java +++ b/src/main/java/minevalley/core/api/database/StatementBuilder.java @@ -408,4 +408,12 @@ public interface StatementBuilder extends AutoCloseable { @Nonnull @Contract(pure = true) PreparedStatement unwrap() throws IllegalStateException; + + /** + * Closes the {@code StatementBuilder} and releases any resources it holds. + * + * @throws SQLException if a database access error occurs + */ + @Override + void close() throws SQLException; } \ No newline at end of file