Skip to content

A way to use JDBC ResultSet in iterator, which makes possible lazy data processing with Java 8 Streams API.

Notifications You must be signed in to change notification settings

pedroviniv/resultset-iterator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

resultset-iterator

A wrapper of ResultSet in form of an Iterator

why?

Currently JDBC hasn't native support to Java 8 Streams API and the Streams API has a simple way to create a Stream from a Iterator using the helper class StreamSupport.

That said, this project aims to deliver a way to iterate a JDBC ResultSet using the Iterator interface. Doing that, we can simply create a Stream of it and lazily proccess the data.

About

A way to use JDBC ResultSet in iterator, which makes possible lazy data processing with Java 8 Streams API.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages