bmiller1009 / sql-utils   0.0.4

Apache License 2.0 GitHub

Utilities library for JDBC sql operations

Build Status Maven Central github: bmiller1009/sql-utils

sql-utils

Utilities library for JDBC sql operations

API docs were generated using dokka and are hosted here.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Prerequisites

What things you need to install the software and how to install them

  • Gradle 5.4.1 or greater if you want to build from source
  • JVM 8+

Installing

Running with Maven

If you're using Maven simply specify the GAV coordinate below and Maven will do the rest

<dependency>
  <groupId>org.bradfordmiller</groupId>
  <artifactId>sqlutils</artifactId>
  <version>0.0.4</version>
</dependency>

Running with SBT

Add this GAV coordinate to your SBT dependency list

libraryDependencies += "org.bradfordmiller" %% "sqlutils" % "0.0.4"

Running with Gradle

Add this GAV coordinate to your Gradle dependencies section

dependencies {
    ...
    ...
    implementation 'org.bradfordmiller:sqlutils:0.0.4'
}