Kotlin Database Connectivity

Documentation
Dokka: https://levkopo.github.io/ktdbc/
Supported Drivers
All supported drivers here
You can help the project by implementing one of the drivers. After you implement it, we will add it to the list.
Install
Maven
Gradle Groovy
dependencies {
// Common
implementation "com.github.levkoposc:ktdbc-core:$ktdbcVersion"
// JVM
implementation "com.github.levkoposc:ktdbc-core-jvm:$ktdbcVersion"
// Native
implementation "com.github.levkoposc:ktdbc-core-native:$ktdbcVersion"
// JS
implementation "com.github.levkoposc:ktdbc-core-js:$ktdbcVersion"
}
Gradle Kotlin
dependencies {
// Common
implementation("com.github.levkoposc:ktdbc-core:$ktdbcVersion")
// JVM
implementation("com.github.levkoposc:ktdbc-core-jvm:$ktdbcVersion")
// Native
implementation("com.github.levkoposc:ktdbc-core-native:$ktdbcVersion")
// JS
implementation("com.github.levkoposc:ktdbc-core-js:$ktdbcVersion")
}