exqlite
exqlite copied to clipboard
An SQLite3 driver for Elixir
Hi, running this the following in the console is accepted: ``` INSERT INTO "counter_interfaces" ("device_id","device_type") VALUES ("123","3g") ON CONFLICT ("device_id", COALESCE("sim_id", "")) DO UPDATE SET "device_id" = EXCLUDED."device_id","device_type" = EXCLUDED."device_type","sim_id"...
👋 I understand that it's unlikely to be a problem in `exqlite`, but just in case you have any idea as to what I'm doing wrong. --- Repo: https://github.com/ruslandoga/sqlite-zig-problem I'm...
This is an interesting page I ran across today and may be beneficial if we can figure out how best to expose the backup api https://www.sqlite.org/backup.html
I was debugging a sudden reboot on our nerves system with a expensive query. I had the memory usage and OOM in mind, but today I found out that raising...
when using sqlcipher, the `mix ecto.migrate` command (after `mix ecto.create`) results in the following error: ``` [error] GenServer #PID terminating ** (MatchError) no match of right hand side value: {:error,...
Hi, Can in introduce you to "duckdb" https://duckdb.org/ I believe that the C api for sqlite can be compiled against duckDB, giving some possibility that this is a straightforward integration?...
The dirtynif execution model is okay for most cases, but we have an issue where long running writes need to timeout / be interrupted mid execution and aborted. The only...
While cleaning up the benchmarks in `ecto_sqlite3`, I hit this error due to the benchmarks setup code that used `insert_all` hitting this limit. Couple options I can think of: 1....
Would be nice to see this compiled for ARM at minimum and then have an Android compilation
I'd like to explore extracting this section of code into its own module. This connection module is just large and unwieldy personally. https://github.com/warmwaffles/exqlite/blob/main/lib/ecto/adapters/exqlite/connection.ex#L1038-L1251