Skip to content

Releases: juliomarcopineda/jdbc-stream

v0.1.1

06 May 18:43
7f4285b
Compare
Choose a tag to compare

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

02 May 13:52
b245b82
Compare
Choose a tag to compare

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")