Skip to content

v0.1.1

Latest
Compare
Choose a tag to compare
@juliomarcopineda juliomarcopineda released this 06 May 18:43
7f4285b

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