Austin Bonander
Austin Bonander
I'm not comfortable with exposing these types wholesale. I'd rather discuss what you need specifically.
You can use equality on `TypeInfo` or https://docs.rs/sqlx/latest/sqlx/trait.Type.html#method.compatible This is how typechecking in the macros works. It's a good bit of boilerplate but you can use a `macro_rules!()` macro to...
I agree with adding `unsafe`, but instead of exposing a constructor for `SqliteError`, why not add `last_error(&mut self) -> Option` to `LockedSqliteHandle`?
> Only reason I can think of for `SqliteError::new` instead would be if you had a `sqlite3_handle` but not the `LockedSqliteHandle` that it came from, and I'm not sure if...
I came across this issue simply because the pinning requirements of `FutureGroup` are [clear as mud](https://docs.rs/futures-concurrency/latest/futures_concurrency/future/struct.FutureGroup.html#impl-Unpin-for-FutureGroup%3CF%3E) (I understand this is largely an issue with `pin-project`) and I was trying to...
@D1plo1d I would probably prefer something a little less implicit like the following: https://github.com/launchbadge/sqlx/issues/591 That would work okay with this proposal, although if you use the `...foo` syntax we'll have...
(I'm just now realizing the build failures are from #3383 itself so disregard that.)
Our CI already downloads an extension from https://github.com/nalgeon/sqlean/ for testing: https://github.com/launchbadge/sqlx/blob/65229f7ff91ecd38be7c10fb61ff3e05bedabe87/.github/workflows/sqlx.yml#L125 One thing is that for Unix platforms, you need to show the user either how to set `LD_LIBRARY_PATH` or...
@djarb this got closed because I merged and deleted the `sqlx-toml` branch. Please rebase against `main` and open a new PR.