sqldelight icon indicating copy to clipboard operation
sqldelight copied to clipboard

SQLDelight - Generates typesafe Kotlin APIs from SQL

Results 376 sqldelight issues
Sort by recently updated
recently updated
newest added

### SQLDelight Version 2.0.0-alpha04 ### SQLDelight Dialect sqlite:3.3.0 (Android 13) ### Describe the Bug https://www.db-fiddle.com/f/kxEfy1JjP565Emq1AR7c8F/0 When a string is surrounded by single quotes instead of double quotes, any apostrophes need...

bug

### SQLDelight Version 2.0.0 ### Application Operating System Only tested native ### Describe the Bug On 1.x it was possible to do this: ``` database.xQueries.selectX() { x -> val y...

bug
component: drivers/native

### Description I have a project with the following modules: `:app` ```kotlin sqldelight { databases { create("Database") { packageName = "com.example.app.db" dependency(projects.featureA) dependency(projects.featureB) } } } ``` `:feature-a` ```kotlin sqldelight...

feature

### SQLDelight Version 2.0.2 ### IDE Version Android Studio Koala | 2024.1.1 ### Dialect SQLite ### Describe the Bug After moving from AS Jelly to Koala, the SQLD plugin throws...

bug
component: ide-plugin

fixes #5309 Support `IF NOT EXISTS` in ALTER TABLE ADD COLUMN ... Added override rule for `alter_table_add_column` as redeclared for extra clause Added custom mixin to prevent duplicate property field...

## Error in SQL Delight IntelliJ Plugin **java.lang.RuntimeException** in **SqlDelightGotoDeclarationHandler.kt:124** com.intellij.util.io.CorruptedException: file[41863].child[3][#1251210] is out of allocated id range (0..1251209] -> VFS is corrupted (was IDE forcibly terminated?) [View on Bugsnag](https://app.bugsnag.com/square-inc/sql-delight-intellij-plugin/errors/667a3b3258a843000892590c?event_id=667a3b3100efca38d6370000&i=gh&m=ci)...

bug

### SQLDelight Version 2.0.0 ### SQLDelight Dialect Postgres ### Describe the Bug Sqldelight doesn't support schemas. Schemas are an extremely useful tool for encapsulating groups of functions and tables for...

bug

When upgrading an old project from SqlDelight 1.5 to SqlDelight 2, I noticed the "Upgrading to 2.0" docs didn't mention what to do with Android-only projects and sourceFolders. There's an...

### SQLDelight Version 2.0.2 ### SQLDelight Dialect PostgreSQL ### Describe the Bug I'm trying to write a `sqm` migration file: ```sql ALTER TABLE ProductUpdateDb ADD COLUMN IF NOT EXISTS apps_labels...

bug

[Androidx has a `SQLiteDriver` that targets Android, iOS, Mac, Linux, and JVM Desktop](https://developer.android.com/kotlin/multiplatform/sqlite). This PR provides a `SqlDriver` that wraps it. Currently the implementation only works for Android and JVM...