Ryan Leckey

Results 194 comments of Ryan Leckey

@nrc The ide-rust package is as feature complete as it can be with the status of atom-ide. See https://github.com/mehcode/atom-ide-rust/blob/master/README.md#features

Let's take a step back here and go survey how other large SQL frameworks do this. Rails, Django, etc. There must be some inspiration on what works well to draw...

That is all completely fair. I agree that we need to make this a priority. I think a potentially good solution here is to take a public SQL dataset, and...

> Do you plan to have this as examples and a corresponding mdbook (guide)? Maybe a first step would be just examples. Trying to reign myself in so this gets...

Love the enthusiasm everyone. I will commit to getting this started over the next couple days (in the `next` branch) and then would love additional help filling in. --- @pauldorehill...

It is currently missing, yea. I'm open to API ideas. ```rust // would rename existing ::transaction to ::with_transaction let mut tx = conn.transaction() // -> TransactionOptions .read_only() .isolation_level(IsolationLevel::RepeatableRead) .begin() .await?;...

Definitely on the table. This is pretty trivial all things considered, so it shouldn't be much of a stretch to get this in soon.

You can use https://docs.rs/sqlx/0.5.5/sqlx/trait.Connection.html#method.clear_cached_statements to reset ALL cached statements. This should definitely be ran after any DDL if you have any open connections. However.. we don't have an easy way...

> Specifically, I wonder if we could work around this issue by avoiding SELECT * (and RETURNING *) clauses. That's correct. You should only be seeing that error if you've...

@abonander My hope is we can identify that it's PgBouncer on start-up. If not we'll need to tinker and provide configuration for people to use. Perhaps a way to disable...