Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
any_connection::connect (1 of 2 overloads)

Establishes a connection to a MySQL server.

Synopsis
void
connect(
    const connect_params& params,
    error_code& ec,
    diagnostics& diag);
Description

This function performs the following:

You can configure some options using the connect_params struct.

The decision to use TLS or not is performed using the following:

If params.connection_collation is within a set of well-known collations, this function sets the current character set, such that current_character_set returns a non-null value. The default collation (utf8mb4_general_ci) is the only one guaranteed to be in the set of well-known collations.


PrevUpHomeNext