Anatoly I
Anatoly I
@midnightcodr, I've updated the snippet. Thanks.
Yes. I'll implement it. According to a logic of sha256_password authentication you can use SSL connection to achieve same level of security until support is implemented.
Hi. Although the `sha256_password` authentication plugin is not yet implemented you may be interested in switching to the `caching_sha2_password` plugin which is supported since v14.0.0 of the **mysql** crate.
Hi. I've just generalized `GenericConnection` more in 60feec2, but i'm not sure it'll really work for you. Could you please try it yourself (this change is in `mocking` branch)?
Hi. Could you please elaborate? I'm struggling to parse the actual question. Btw, connection URL requirements as well as supported parameters are documented here: https://docs.rs/mysql/latest/mysql/#url-based-connection-string
Hi. The `break` statement means that the result_set will go out of scope and hence dropped. As you can see [here][1] the Drop impl for query result is actually the...
> Ideally change so you can stop the loop. Oh. Then i suggest you the second option because this loop can't be stopped without breaking the connection. I'll think about...
Thanks for your work. Looking forward to it.
I tried, but ``` src/value.rs:732:1: 736:2 error: conflicting implementations for trait `value::ToRow` [E0119] src/value.rs:732 impl Vec { src/value.rs:734 self.clone().to_row() src/value.rs:735 } src/value.rs:736 } ```
No. It starts to conflict with all non-generic impls of `IntoValue` trait. There a three traits involved in making `execute` to work: 1. IntoValue - takes ownership and implemented for...