{"id":13314827,"url":"https://github.com/levkopo/ktdbc","last_synced_at":"2025-02-26T00:43:06.330Z","repository":{"id":65507752,"uuid":"568371274","full_name":"levkopo/ktdbc","owner":"levkopo","description":"Database Interfaces for Kotlin","archived":false,"fork":false,"pushed_at":"2022-11-20T20:33:37.000Z","size":332,"stargazers_count":2,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-11-11T00:37:42.960Z","etag":null,"topics":["database-connectivity","kotlin","kotlin-multiplatform"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/levkopo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-11-20T10:24:39.000Z","updated_at":"2022-11-20T15:12:59.000Z","dependencies_parsed_at":"2023-01-26T16:00:18.344Z","dependency_job_id":null,"html_url":"https://github.com/levkopo/ktdbc","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/levkopo%2Fktdbc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/levkopo%2Fktdbc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/levkopo%2Fktdbc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/levkopo%2Fktdbc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/levkopo","download_url":"https://codeload.github.com/levkopo/ktdbc/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":233039451,"owners_count":18615668,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["database-connectivity","kotlin","kotlin-multiplatform"],"created_at":"2024-07-29T18:12:09.081Z","updated_at":"2025-01-08T13:52:01.602Z","avatar_url":"https://github.com/levkopo.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Kotlin Database Connectivity\n[![Kotlin Alpha](https://kotl.in/badges/alpha.svg)](https://kotlinlang.org/docs/components-stability.html)\n[![Maven Central](https://img.shields.io/maven-central/v/com.github.levkoposc/ktdbc-core)](https://mvnrepository.com/artifact/com.github.levkoposc/ktdbc-core)\n[![GitHub license](https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat)](https://www.apache.org/licenses/LICENSE-2.0)\n[![Kotlin](https://img.shields.io/badge/kotlin-1.7.20-blue.svg?logo=kotlin)](http://kotlinlang.org)\n\n## Documentation\nDokka: https://levkopo.github.io/ktdbc/\n\n## Supported Drivers\nAll supported drivers [here](https://github.com/levkopo/ktdbc/blob/master/drivers.md)\n\nYou can help the project by implementing one of the drivers. After you implement it, we will add it to the list.\n\n## Install\n### Maven\n```xml\n\u003c!--Common--\u003e\n\u003cdependency\u003e\n   \u003cgroupId\u003ecom.github.levkoposc\u003c/groupId\u003e\n   \u003cartifactId\u003ektdbc-core\u003c/artifactId\u003e\n   \u003cversion\u003e$ktdbcVersion\u003c/version\u003e\n\u003c/dependency\u003e\n\n\u003c!--JVM--\u003e\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.github.levkoposc\u003c/groupId\u003e\n    \u003cartifactId\u003ektdbc-core-jvm\u003c/artifactId\u003e\n    \u003cversion\u003e$ktdbcVersion\u003c/version\u003e\n\u003c/dependency\u003e\n\n\u003c!--Native--\u003e\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.github.levkoposc\u003c/groupId\u003e\n    \u003cartifactId\u003ektdbc-core-native\u003c/artifactId\u003e\n    \u003cversion\u003e$ktdbcVersion\u003c/version\u003e\n\u003c/dependency\u003e\n\n\u003c!--JS--\u003e\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.github.levkoposc\u003c/groupId\u003e\n    \u003cartifactId\u003ektdbc-core-js\u003c/artifactId\u003e\n    \u003cversion\u003e$ktdbcVersion\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n### Gradle Groovy\n```groovy\ndependencies {\n    // Common\n    implementation \"com.github.levkoposc:ktdbc-core:$ktdbcVersion\"\n\n    // JVM\n    implementation \"com.github.levkoposc:ktdbc-core-jvm:$ktdbcVersion\"\n    \n    // Native\n    implementation \"com.github.levkoposc:ktdbc-core-native:$ktdbcVersion\"\n    \n    // JS\n    implementation \"com.github.levkoposc:ktdbc-core-js:$ktdbcVersion\"\n}\n```\n\n\n### Gradle Kotlin\n```groovy\ndependencies {\n    // Common\n    implementation(\"com.github.levkoposc:ktdbc-core:$ktdbcVersion\")\n\n    // JVM\n    implementation(\"com.github.levkoposc:ktdbc-core-jvm:$ktdbcVersion\")\n    \n    // Native\n    implementation(\"com.github.levkoposc:ktdbc-core-native:$ktdbcVersion\")\n    \n    // JS\n    implementation(\"com.github.levkoposc:ktdbc-core-js:$ktdbcVersion\")\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flevkopo%2Fktdbc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flevkopo%2Fktdbc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flevkopo%2Fktdbc/lists"}