Chris Tsang

Results 417 comments of Chris Tsang

We are about to purchase Vue Material Kit PRO, would be nice to know the roadmap going forwards :)

Umm yes. But driver also works for other DB drivers, i.e. the vanilla `postres` and `rusqlite`. So we either have to migrate (I think `postgres` should be easy because we...

> @tyt2y3 hello! I have a PoC for this. I can draft PR. Sure

Um... not sure will it be a lot of hassle if we use feature flags. Otherwise, if we have multiple crates, isn't it similar to the situation we are in...

Ah I think Rusqlite and SQLx has a conflicting requirement to `libsqlite3` The only solution is to not put the crate in the global workspace. I mean adding the following...

Thanks! Sounds like a good plan

Yeah if you put resolves #XX in the PR body it will close the issue automatically

Actually, I think it also makes sense (to be architecturally consistent) to separate `postgres` support to a dedicated crate as well: https://github.com/SeaQL/sea-query/blob/70120b7c99eb40009782066fbb9496d9638c2696/Cargo.toml#L35 That would make `sea-query` a (more or less)...

I added a deprecate notice to sea-query-driver, so I think it's good to remove now!

Actually, I would prefer a non-mut style of API: instead of `fn merge(&mut self, b)`, `fn merge(&self, b) -> Self` would be better.