mysql_async
mysql_async copied to clipboard
Asyncronous Rust Mysql driver based on Tokio.
Updates #223
Hello, found maybe a little mistake in how `tcp_keepalive` see [OptsBuilder::tcp_keepalive()](https://github.com/blackbeam/mysql_async/blob/master/src/opts/mod.rs#L1057-L1061) is defined in the lib. Thanks for the lib by the way. By convention keepalive tcp parameters are seconds,...
I don't really understand why `ToConnection` is an empty trait that requires `connection_like::ToConnection` to be implemented. ```rust // src/lib.rs:575-584 /// Everything that is a connection. /// /// Note that you...
Hi! We would like to get more insight into how well we're handling DB connections, but we're having difficulty measuring some things where we would need deeper access to pool,...
rustls replaced ring with aws-lc-rs as default crypto backend, expose features to select between the two, along with a feature on whether to enable tls 1.2
Unfortunately SockRef::from only implemented for unix/windows, so this doesn't allow making the feature more portable
HI Is it possible? 1) query_iter and return BinaryProtocol or 2) exec_iter and muti query - select 1;select 2;
MariaDB versions where a little out of date. 10.7 and
Hi, We need to use `ring` rather than the default `aws-lc-rs`, could you include `rustls` without the default features and let the `mysql_async` users decide which options to enable? Thanks!