DB
A database library that helps developers to manage their data works.
It contains just MySQL and SQLite for now.
Setup
Gradle
repositories {
mavenCentral()
}
dependencies {
// For the all project type
implementation("tr.com.infumia:db:${version}")
}
Maven
<dependencies>
<!-- For the all project type -->
<dependency>
<groupId>tr.com.infumia</groupId>
<artifactId>db</artifactId>
<version>${version}</version>
</dependency>
</dependencies>