Boost
C++ Libraries
...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
This version of Boost is under active development. You are currently in the master branch. The current version is 1.91.0.
Establishes a connection to a MySQL server.
template< typename EndpointType> void connect( const EndpointType& endpoint, consthandshake_params& params,error_code& ec,diagnostics& diag);
This function is only available if Stream
satisfies the SocketStream
concept.
Connects the underlying stream and performs the handshake with the server.
The underlying stream is closed in case of error. Prefer this function
to connection::handshake.
If using a SSL-capable stream, the SSL handshake will be performed by this function.
endpoint should be convertible
to Stream::lowest_layer_type::endpoint_type.