SQLiter
SQLiter copied to clipboard
Minimal multiplatform sqlite library
Using sqliter(version: 1.0.10) packaged with SQLDelight(1.5.4) on native ios. The following database configuration is producing three files called "examplele", "examplele-shm", and "examplele-wal". `configuration = DatabaseConfiguration( name = "example",..........`
When using an in-memory DB (via SQLDelight 1.5.4), I reliably get `executeNonQuery error | error code SQLITE_LOCKED` when multiple threads are inserting/selecting simultaneously. This test, based on the [SQLDelight getting...
I'm having issues running tests on macOS or iOS. Lots of errors relating to "unresolved references" to sqlite3 symbols. Is there something I need to install or link? ```> Task...
It would be nice to surface the collation functions in SQLite3. This would enable users to execute queries that sort strings in non-standard ways. https://sqlite.org/c3ref/create_collation.html
The following code works fine when kotlin("multiplatform").version("1.7.10"), and the encryption part is abnormal when kotlin("multiplatform").version("1.8.0"). ``` val schema = MyRecordDB.Schema val databaseConfiguration = DatabaseConfiguration( name = "mytest.db", version = schema.version,...
Is there any documentation references to help integrate the SDK?
This is a proposal to add kotlin/js and kotlin/wasm support based on sqlite wasm driver: https://sqlite.org/wasm/doc/trunk/index.md
sqliter1.3.1 (via sqldelight 2.0.0) On iOS, when using `Synchronous.NORMAL` and `JournalMode.DELETE` together I get: ``` co.touchlab.sqliter.interop.SQLiteExceptionErrorCode: error while compiling: PRAGMA synchronous=1 file is not a database at 0 cmn.debug.dylib 0x10c6642cb...
I'd like to reuse your code from - https://github.com/touchlab/SQLiter/blob/main/sqliter-driver/build.gradle.kts - https://github.com/touchlab/SQLiter/blob/main/sqliter-driver/src/nativeInterop/cinterop/sqlite3.def Would you mind to add copyright/license block into these files to clearer mention copyright holder? It would be also...
- Updated Kotlin to 2.2.10 - Updated `com.vanniktech.maven.publish` to 0.34.0 - Updated Gradle to latest stable - Updated to use default source-set hierarchy - Removed all APIS related to the...