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 0d33bc146b.
PrevUpHomeNext

metadata_mode

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

Synopsis

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

enum 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.


PrevUpHomeNext