Lege19
Lege19
I’m on windows, I have tried both the beta and current version as well as the Linux version (which did work) I’m not at home this week and don’t have...
There is no error when running the executable, I get a spinny wheel for about .2 seconds and that’s it. However if I run PolyGlot.bat (in runtime/bin) it gives me...
I'm looking into working on this, here's the API I propose: - `load_folder_filtered>, predicate: P) -> LoadedFolder where P: Fn(&Path) -> bool` - `scan_folder>) -> ScannedFolder` - `scan_folder_filtered>, predicate: P)...
Life's got in the way of things and for now I'm too busy to work on this. If I have time in future though I'll come back to this
Not exactly the same issue but I figured I'd add it here because I think they kinda go together but it would also be useful to specify arbitrary search prefixes,...
Might be good to edit the title to make it clearer this is referring to compile time
> The intention has always been that if you want control over the generated structure, you should be using query_as!(). It's a little more boilerplate but it's going to be...
`column_nullable` is only called from sqlx-sqlite/src/connection/describe.rs in function `describe`. In that function the explain.rs nullability is used as a fallback. I couldn't think of a reasonably efficient way to determine...
Last paragraph of https://sqlite.org/lang_createtable.html#the_primary_key: > According to the SQL standard, PRIMARY KEY should always imply NOT NULL. Unfortunately, due to a bug in some early versions, this is not the...
It looks like sqlx uses `pragma_table_info` for this in [https://github.com/Lege19/sqlx/blob/main/sqlx-sqlite/src/connection/explain.rs#L370](here). From my testing, this gives the correct result in the case of `STRICT` tables and `WITHOUT ROWID` tables. It's just...