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

Currently, channel performs 2 read operations per packet. Add some buffering strategy, as Boost.Beast does, so we can perform fewer read calls.

enhancement

Create a mock stream type that allows us to inject bytes written so we can write unit tests to test error cases.

testing

Currently, only a header-only variant of the library is provided. Add a separate compilation option to reduce build times.

enhancement

Investigate what retry strategies does the MySQL C driver offer and consider implementing them here.

enhancement

Provide an iterator type that allows iterating over a resultset (only for sync ops).

enhancement

Support ```row::operator[](string_view name)``` by adding references to metadata objects in rows.

enhancement