Releases: juliomarcopineda/jdbc-stream
Releases · juliomarcopineda/jdbc-stream
v0.1.1
Added Feature
- Pass in your own Mapper from ResultSet row to any custom Java class to automatically map the ResultSet to
however data structure / object you want. - Refer to the README.md to find example usage
Add to build
jdbc-stream v0.1.1 can be found at the MavenCentral repository
Maven
<dependency>
<groupId>com.github.juliomarcopineda</groupId>
<artifactId>jdbc-stream</artifactId>
<version>0.1.1</version>
</dependency>
Gradle
Groovy DSL
implementation 'com.github.juliomarcopineda:jdbc-stream:0.1.1'
Kotlin DSL
compile("com.github.juliomarcopineda:jdbc-stream:0.1.1")
v0.1.0 First Release
This is the first release of the jdbc-stream Java library. Please refer to the README.md on an example how to use the library
Add to build
jdbc-stream v0.1.0 can be found at the MavenCentral repository
Maven
<dependency>
<groupId>com.github.juliomarcopineda</groupId>
<artifactId>jdbc-stream</artifactId>
<version>0.1.0</version>
</dependency>
Gradle
Groovy DSL
implementation 'com.github.juliomarcopineda:jdbc-stream:0.1.0'
Kotlin DSL
compile("com.github.juliomarcopineda:jdbc-stream:0.1.0")