{"id":15631840,"url":"https://github.com/molikuner/sqldelight-simple-jvm-driver","last_synced_at":"2026-07-29T17:31:29.476Z","repository":{"id":175096164,"uuid":"205876839","full_name":"molikuner/sqldelight-simple-jvm-driver","owner":"molikuner","description":"a simple wrapper around the driver implementation for the jvm to simplify the usage of migrations etc.","archived":false,"fork":false,"pushed_at":"2022-08-21T19:33:10.000Z","size":107,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-29T19:12:57.504Z","etag":null,"topics":["hacktoberfest","kotlin","sqldelight"],"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/molikuner.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-09-02T14:41:10.000Z","updated_at":"2024-02-16T12:52:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"a927ac09-4bef-4c3f-928c-f056cadcee31","html_url":"https://github.com/molikuner/sqldelight-simple-jvm-driver","commit_stats":null,"previous_names":["molikuner/sqldelight-simple-jvm-driver"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/molikuner/sqldelight-simple-jvm-driver","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/molikuner%2Fsqldelight-simple-jvm-driver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/molikuner%2Fsqldelight-simple-jvm-driver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/molikuner%2Fsqldelight-simple-jvm-driver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/molikuner%2Fsqldelight-simple-jvm-driver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/molikuner","download_url":"https://codeload.github.com/molikuner/sqldelight-simple-jvm-driver/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/molikuner%2Fsqldelight-simple-jvm-driver/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279000853,"owners_count":26082950,"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","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["hacktoberfest","kotlin","sqldelight"],"created_at":"2024-10-03T10:41:43.688Z","updated_at":"2025-10-09T06:08:28.791Z","avatar_url":"https://github.com/molikuner.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# sqldelight-simple-jvm-driver\n\n[![Download](https://api.bintray.com/packages/molikuner/maven-extensions/sqldelight-simple-jvm-driver/images/download.svg) ](https://bintray.com/molikuner/maven-extensions/sqldelight-simple-jvm-driver/_latestVersion)\n[![Build Status](https://cloud.drone.io/api/badges/molikuner/sqldelight-simple-jvm-driver/status.svg)](https://cloud.drone.io/molikuner/sqldelight-simple-jvm-driver)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\n\na simple wrapper around the driver implementation for the jvm of [SQLDelight](https://github.com/cashapp/sqldelight) to simplify the usage of migrations etc.\n\n## setup\n\n```gradle\ndependencies {\n    ...\n    implementation(\"com.molikuner.sqldelight:simple-jvm-driver:$sqldelightVersion\")\n    ...\n}\n```\n\n## usage\n\n```Kotlin\nval driver: SqlDriver = JvmSqliteDriver(Database.Schema, \"test.db\")\n```\nby using this driver wrapper you get automatic migrations. you don't need to save anthing about your db except\nthe db itself and the lib will migrate your schema if a newer version is available. at initial creation of the\ndb the current schema will be applied and afterwards with every new migration it will be migrated. just as simple\nas the android driver.\n\n## versioning\n\nas this is just a simple wrapper around the official [SQLDelight](https://github.com/cashapp/sqldelight) jvm driver\nthis library uses the same versioning as the underlying driver implementation. this also means, that there will be one release\nof this lib per release of SQLDelight.\n\n## releasing\n\n1. create tag on new commit\n2. push to github and wait for drone to finish build\n3. publish by clicking deploy or running `drone promote molikuner/sqldelight-simple-jvm-driver \u003cbuildNumber\u003e \u003cversion\u003e`\n4. upload the `.asc` files from bintray to github release\n5. press publish on github\n\nif [drone](https://cloud.drone.io) build/promote fails, these steps are needed to do it manually:\n\n1. open build.gradle.kts and replace the following: in the bintray section\n   1. user with `molikuner`\n   2. key with the api key from my user profile of bintray\n   3. the gpg passphrase with the passphrase from my password manager\n\n2. run `./gradlew bintrayUpload`\n3. upload all files from `build/repository/com/molikuner/sqldelight/simple-jvm-driver/\u003cversion\u003e/` to the github release\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmolikuner%2Fsqldelight-simple-jvm-driver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmolikuner%2Fsqldelight-simple-jvm-driver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmolikuner%2Fsqldelight-simple-jvm-driver/lists"}