Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

connect_params

Parameters to be used with any_connection connect functions.

Synopsis

Defined in header <boost/mysql/connect_params.hpp>

struct connect_params;
Data Members

Name

Description

connection_collation

The ID of the collation to use for the connection.

database

Database name to use, or empty string for no database (this is the default).

multi_queries

Whether to enable support for executing semicolon-separated text queries.

password

Password for that username, possibly empty.

server_address

Determines how to establish a physical connection to the MySQL server.

server_default_charset

The character set that the server uses as its default.

ssl

Controls whether to use TLS or not.

username

User name to authenticate as.

Description

To be passed to any_connection::connect and any_connection::async_connect. Includes the server address and MySQL handshake parameters. This is an owning type.

Convenience header <boost/mysql.hpp>


PrevUpHomeNext