Matthew Johnston

Results 272 comments of Matthew Johnston

Ugh ``` c_src\sqlite3_nif.c(703): error C2057: expected constant expression c_src\sqlite3_nif.c(703): error C2466: cannot allocate an array of constant size 0 c_src\sqlite3_nif.c(703): error C2133: 'types_array': unknown size ```

It's a "race" condition I have yet to resolve. This has to do with how the connection pooling works. The process that held the sqlite connection open is shutting down...

That error is the process crashing. You would have to build that handler in your application. Curious, what is your pooling configuration for dev/test?

Set `pool_size: 1` in your `dev.exs` and give it a shot. It should help with the thrashing.

I'm going to leave this issue open until we complete the removal of `DBConnection` from this library and lift it to `ecto_sqlite3` OR do away with it entirely and implement...

Exqlite makes no attempt to find the table. I'll look into this a little later today. Ecto builds that query and then exqlite execs the built SQL string. I suspect...

@jzaehrin do you know if something like that works with postgres and ecto?

Not a huge deal. I'm still going to look into this.

@jzaehrin it seems like you are wanting to use an extension https://www.sqlite.org/series.html > The generate_series(START,STOP,STEP) [table-valued function](https://www.sqlite.org/vtab.html#tabfunc2) is a [loadable extension](https://www.sqlite.org/loadext.html) included in the SQLite source tree, and compiled into...

I need to think through the extension compilation and how it will function here. Not everyone will want to load the extensions, and thus I don't want to make them...