sqlitex
sqlitex copied to clipboard
An Elixir wrapper around esqlite. Allows access to sqlite3 databases.
Hi, I do not know if you know the [depo](https://hexdocs.pm/depo/readme.html#usage-example) elixir package, but it has an interesting feature. This feature may be implemented in the `Sqlitex.Server` module. Basically, you create...
Having a long running `Sqlitex.Server` process is awesome. What if I have N number of sqlite files in my project, and I want to start a process per file. Since...
When I am working with Sqlitex and opening connections, I always get a tri-tuple like the following: ``` { :connection, #Reference, #Reference } ``` IMO the type should not be:...
As far as I see, using `begin` and `end` together with `Sqlitex.Server` has a race condition when two processes are sending messages: Serialized: ``` A -> Server: "begin" A ->...
With the introduction of Elixir 1.8, `Mix.target()` was added. This had the side effect of breaking packages that build C code that is not built by an updated version of...