Dustin Bensing

Results 62 comments of Dustin Bensing

This looks like a very helpful list of examples. I don't know if its better suited for a "tips and tricks" section but i often like to use some kind...

I think this issue is getting filled with great ideas all based around the topic of "idiomatic usage of sqlx" and how to improve the current state. Do we need...

What are the pros and cons of the different approaches? Just from the first look at it i have no strong feelings one way or the other. The first one...

@ivan And for different isolation levels create different pools and use the pool that is "holding" the right isolation level? Or is this global?

By choosing the "first" approach we would change the current one from ```rust conn.transaction(|conn|Box::pin(async move { query("select * from ..").fetch_all(conn).await })).await ``` into ```rust conn.with_transaction(|conn|Box::pin(async move { query("select * from...

Not to derail the conversation topic to badly but i see a use case in the mechanics that @bennofs proposed with `check_compat(connection)` but i also agree with @jplatte that this...

There where some ideas cooking [here](https://github.com/launchbadge/sqlx/issues/1014#issuecomment-770176743) but it has not lead to any concrete implementations. I think in your case you would get something like ```rust query_as!(Person, "SELECT p.id, p.name,...

I had a similar error while upgrading to Flutter2. What helped was to delete the cocoapods cache and make a clean flutter build (maybe it was also necessary to delete...

I can confirm this. Looks like the code that is trying to get the `appStoreId` by itself is failing and does not expect the way it fails, thus not returning...

I can help with a PR and Testing on actual devices. I have no clue how to regain the functionality, because the original (itunes) service is seemingly dead. Idk if...