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 a snapshot of the develop branch, built from commit fed4359bab.
PrevUpHomeNext

metadata_mode

Describes how to handle metadata when running a query or statement.

Synopsis

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

enum class metadata_mode;
Values

Name

Description

minimal

Retain the minimum metadata possible to be able to execute the operation. This is the most efficient mode, but will leave some fields in the metadata class empty.

full

Retain as much metadata as possible. All the fields in metadata are usable, but causes more allocations.

Convenience header <boost/mysql.hpp>


PrevUpHomeNext