Skip to content

Commit

Permalink
2.6.7
Browse files Browse the repository at this point in the history
* Improvements and bug fix.
  • Loading branch information
landawn committed Aug 28, 2020
1 parent a2fec2e commit 6f8eddc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### 2.6.7

* Improvements and bug fix.


### 2.6.6

* Improvements and bug fix.
Expand Down
4 changes: 2 additions & 2 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-2.6.6-brightgreen.svg)](https://www.javadoc.io/doc/com.landawn/abacus-jdbc/2.6.6/index.html)
[![Javadocs](https://img.shields.io/badge/javadoc-2.6.7-brightgreen.svg)](https://www.javadoc.io/doc/com.landawn/abacus-jdbc/2.6.7/index.html)

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

Expand Down Expand Up @@ -69,7 +69,7 @@ userDao.deleteById(100L);
* Gradle:
```gradle
// JDK 1.8 or above:
compile 'com.landawn:abacus-jdbc:2.6.6'
compile 'com.landawn:abacus-jdbc:2.6.7'
```

## User Guide:
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/landawn/abacus/util/JdbcUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -1691,7 +1691,7 @@ public Object[] next() {
}
};

Iterables.parse(iter, offset, count, processThreadNum, queueSize, rowParser, onComplete);
Iterables.forEach(iter, offset, count, processThreadNum, queueSize, rowParser, onComplete);
}

/**
Expand Down

0 comments on commit 6f8eddc

Please sign in to comment.