mysql_async icon indicating copy to clipboard operation
mysql_async copied to clipboard

Asyncronous Rust Mysql driver based on Tokio.

Results 35 mysql_async issues
Sort by recently updated
recently updated
newest added

When disconnection/closing the connection from the server-side I get this warning: ``` [Warning] Aborted connection 14 to db: 'unconnected' user: 'root' host: '172.18.0.2' (Got an error reading communication packets) ```...

The [param docs](https://docs.rs/mysql_async/latest/mysql_async/macro.params.html) still use `prep_exec` which got removed. Edit: Apparently the issue itself is in mysql_common. And as mysql_common probably has no actual "runner", there is no way to...

Hi! First of all a giant amount of gratitude for all of you for providing this crate. It worked out of the box and was very pleasant to use. With...

Hello I'm using mysql_async to write a program that tails the MariaDB binlog. I'm using MariaDB 10.5.15. The server is configured with the following binlog-related settings: ``` [mysqld] log-bin =...

This is very tangentially related to #186 in that I've never been totally sure of the recommended way(s) to work with mysql_async's API when it comes to abstracting and writing...

Hi. For some reason we haven't been getting this error until now, when user reported crashes due to reaching `max_prepared_stmt_count`. We typically set the LRU to 1000 statements for everybody,...

This PR adds support of a custom executors (defaults to `tokio::executor::DefaultExecutor`). Required bounds for supported executors are defined as `MyExecutor` trait. New constructors: * `Conn::with_executor` * `Conn::from_url_with_executor` * `Pool::with_executor` *...

How to configure the timeout for the client when making a connection?, for testing I changed port `3306` to a random "closed" port but approximately after a minute the client...

Hi, I am trying to use `mysql_async` from existing code using `mysql` (https://docs.rs/mysql) but notice that some methods are missing or not the same, for example, the `ip_or_hostname` ``` ///...

Disclaimer: This issue is supposed to be a discussion. I think, with the upcoming async/await, other runtimes will appear. There are already 3 "large" ones: tokio, futures and async-std. Therefore...