Skip to content

Commit 6f8eddc

Browse files
committed
2.6.7
* Improvements and bug fix.
1 parent a2fec2e commit 6f8eddc

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 2.6.7
2+
3+
* Improvements and bug fix.
4+
5+
16
### 2.6.6
27

38
* Improvements and bug fix.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# abacus-jdbc
22

33
[![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/)
4-
[![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)
4+
[![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)
55

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

@@ -69,7 +69,7 @@ userDao.deleteById(100L);
6969
* Gradle:
7070
```gradle
7171
// JDK 1.8 or above:
72-
compile 'com.landawn:abacus-jdbc:2.6.6'
72+
compile 'com.landawn:abacus-jdbc:2.6.7'
7373
```
7474

7575
## User Guide:

src/main/java/com/landawn/abacus/util/JdbcUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1691,7 +1691,7 @@ public Object[] next() {
16911691
}
16921692
};
16931693

1694-
Iterables.parse(iter, offset, count, processThreadNum, queueSize, rowParser, onComplete);
1694+
Iterables.forEach(iter, offset, count, processThreadNum, queueSize, rowParser, onComplete);
16951695
}
16961696

16971697
/**

0 commit comments

Comments
 (0)