mysql icon indicating copy to clipboard operation
mysql copied to clipboard

MySQL C++ client based on Boost.Asio

Results 163 mysql issues
Sort by recently updated
recently updated
newest added

Support the PING (https://dev.mysql.com/doc/dev/mysql-server/latest/page_protocol_com_ping.html) protocol mechanism.

review-issue
acceptance-criteria

The value class currently doesn't own the memory it points to, in the case of string values. This causes confusion and is error prone, and may not work well with...

review-issue
acceptance-criteria

There are some cases when navigating through the doc will lead you to a « This Page Intentionally Left Blank 2/2 » (whose url is https://anarthal.github.io/mysql/mysql/ref.html . This usually appears...

Add a comment to state the differences with these two libraries. From the Boost review: * Add a performance page in the documentation comparing the library with these two. *...

documentation

Character encoding is something that causes confusion. [This section](https://anarthal.github.io/mysql/mysql/types.html) talks about it briefly, but it's not enough. Add a section and possibly an example. Sample question: If i have a...

documentation
review-issue

`TIMESTAMP`s are specially tricky.

documentation
review-issue

How does this library react in different failover scenarios? Provide a section in the docs. Possible scenarios: * InnoDB Cluster * InnoDB ReplicaSet * NDB Cluster * MySQL Router (with...

documentation

Provide an example on how to reconnect a failed MySQL connection (e.g. due to a network failure).

documentation
review-issue

When issuing a text query, the server immediately sends all rows to the client. This is not avoidable. However, there is a mechanism in the protocol to prevent this in...

enhancement