Skip to content

Commit

Permalink
3.7.12
Browse files Browse the repository at this point in the history
  • Loading branch information
haiyangl committed Oct 21, 2024
1 parent 9ddc1cc commit 544073e
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 12 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 3.7.12

* Improve JavaDoc.
* Improvements and bug fix.

### 3.7.11

* Improvements and bug fix.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# abacus-jdbc

[![Maven Central](https://img.shields.io/maven-central/v/com.landawn/abacus-jdbc.svg)](https://maven-badges.herokuapp.com/maven-central/com.landawn/abacus-jdbc/)
[![Javadocs](https://img.shields.io/badge/javadoc-3.7.11-brightgreen.svg)](https://www.javadoc.io/doc/com.landawn/abacus-jdbc/3.7.11/index.html)
[![Javadocs](https://img.shields.io/badge/javadoc-3.7.12-brightgreen.svg)](https://www.javadoc.io/doc/com.landawn/abacus-jdbc/3.7.12/index.html)

Hope it will bring you the programming experiences: coding with SQL/DB is just like coding with Collections.

Expand Down Expand Up @@ -143,15 +143,15 @@ The biggest difference between this library and other data(database) access fram
<dependency>
<groupId>com.landawn</groupId>
<artifactId>abacus-jdbc</artifactId>
<version>3.7.11</version>
<version>3.7.12</version>
<dependency>
```

* Gradle:

```gradle
// JDK 17 or above:
compile 'com.landawn:abacus-jdbc:3.7.11'
compile 'com.landawn:abacus-jdbc:3.7.12'
```

## User Guide:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.landawn</groupId>
<artifactId>abacus-jdbc</artifactId>
<version>3.7.12</version>
<version>3.7.13</version>
<packaging>jar</packaging>

<name>abacus-jdbc</name>
Expand Down
7 changes: 5 additions & 2 deletions src/main/java/com/landawn/abacus/jdbc/Jdbc.java
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,11 @@ public void accept(final PreparedStatement stmt, final List<T> params) throws SQ
@FunctionalInterface
public interface TriParametersSetter<QS, T> extends Throwables.TriConsumer<ParsedSql, QS, T, SQLException> {
@SuppressWarnings("rawtypes")
TriParametersSetter DO_NOTHING = (parsedSql, preparedQuery, param) -> {
// Do nothing.
TriParametersSetter DO_NOTHING = new TriParametersSetter<>() {
@Override
public void accept(ParsedSql parsedSql, Object preparedQuery, Object param) throws SQLException {
// Do nothing.
}
};

/**
Expand Down
6 changes: 0 additions & 6 deletions src/test/java/com/landawn/abacus/Maven.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,6 @@

public class Maven {

/**
*
*
* @param args
* @throws Exception
*/
public static void main(final String[] args) throws Exception {
N.println(new File(".").getAbsolutePath());

Expand Down

0 comments on commit 544073e

Please sign in to comment.