exqlite
exqlite copied to clipboard
An SQLite3 driver for Elixir
Originally I implemented the adapter to use single steps and just let it work with erlang's scheduler. I remember I ran into issues where selecting data was actually slower than...
Closes https://github.com/elixir-sqlite/exqlite/issues/277 This looks like it's your issue since Elixir strings at UTF-8 encoded. But I have to admit I'm not sure why it was latin-1 before. So I might...
Since there is [interest](https://github.com/elixir-sqlite/exqlite/issues/192#issuecomment-1866504011) in moving `db_connection` to `ecto_sqlite3`, I thought I'd rebase https://github.com/ruslandoga/exqlite/pull/3 against the current master and resubmit. Compared to https://github.com/ruslandoga/exqlite/pull/3 this PR is missing the quality of...
Hi, The following code is crashing when the directory containing the database contains accents. I'm not skilled enough to check if the bug is in exqlite code ou kino_db. I...
Hey folks, I can see increased interest in SQLite in my [tech](https://twitter.com/dhh/status/1705271515997143168) [bubble](https://www.youtube.com/watch?v=fq2PUpgfCi4). Ahd that's how I learned about [libSQL](https://turso.tech/libsql) which offers several [improvements](https://github.com/tursodatabase/libsql/blob/main/doc/libsql_extensions.md) including altering columns. One of the...
I recently update exqlite and now when I run `mix compile` I see the following error printed in red text: > Error happened while installing exqlite from precompiled binary: cannot...
I was looking at https://github.com/losfair/mvsqlite and it seems like it's a drop in replacement for sqlite. I wasn't sure how to do the integration to elixir properly and it feels...
.. and it is making me sad. I am not sure if the URI way of loading vfs, eg: `database: "file://./bla.db?vfs=httpvfs"` is enabled so it could work. I tried just...
In this in the roadmap?
Hi, I'm trying to add sqlite3 support to an Elixir CLI tool I built recently, and exqlite seems like a good match, but I'm unable to get it working. The...