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 is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext
connection::connect (2 of 2 overloads)

Establishes a connection to a MySQL server.

Synopsis
template<
    typename EndpointType>
void
connect(
    const EndpointType& endpoint,
    const handshake_params& params);
Description

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.

endpointshould be convertible to Stream::lowest_layer_type::endpoint_type.


PrevUpHomeNext