Dokka: https://levkopo.github.io/ktdbc/
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.
<!--Common-->
<dependency>
<groupId>com.github.levkoposc</groupId>
<artifactId>ktdbc-core</artifactId>
<version>$ktdbcVersion</version>
</dependency>
<!--JVM-->
<dependency>
<groupId>com.github.levkoposc</groupId>
<artifactId>ktdbc-core-jvm</artifactId>
<version>$ktdbcVersion</version>
</dependency>
<!--Native-->
<dependency>
<groupId>com.github.levkoposc</groupId>
<artifactId>ktdbc-core-native</artifactId>
<version>$ktdbcVersion</version>
</dependency>
<!--JS-->
<dependency>
<groupId>com.github.levkoposc</groupId>
<artifactId>ktdbc-core-js</artifactId>
<version>$ktdbcVersion</version>
</dependency>
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"
}
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")
}