Matthew Johnston

Results 272 comments of Matthew Johnston

Something is up with the DBConnection implementation and how Ecto is initiating the connection. I can reach the VFS directly with the code above and work with raw data. What...

This actually just made me realize that I only have CI running for windows and ubuntu, but precompile works fine for mac. 😬

https://github.com/elixir-sqlite/exqlite/blob/fec606ccc8a291526d1e3137099b6acf0f6f84fe/.github/workflows/precompile.yml#L20-L24 https://github.com/elixir-sqlite/exqlite/blob/fec606ccc8a291526d1e3137099b6acf0f6f84fe/.github/workflows/ci.yml#L50-L56

Out of curiosity, is the precompiled package not working for you @clarkcb? I assume it's here? https://github.com/clarkcb/xfind/tree/main/elixir/exfind can you push your changes up to a feature branch so that I...

This appears to compile fine in Linux 😞 You shouldn't need to copy anything from the precompiled stuff. That gets pulled in automatically when you do `mix compile`. It _should_...

How is Erlang and Elixir installed on your machine? Are you using `asdf` or `mise`?

No problem. Personally I use `mise`. I used to use `asdf` but I noticed it slowing my shell down considerably and any program boots. Your mileage may vary here. As...

You are welcome to compile and load extensions. https://github.com/elixir-sqlite/exqlite?tab=readme-ov-file#using-sqlite3-native-extensions

Obviously, if you are deploying to a linux machine, you'll need to compile it to a `.so` and include it. You can take a look at the SQLean hex package...

I'm contemplating building the extensions with this library and including them. But for now, I'm going to leave it alone.