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

metadata_mode
PrevUpHomeNext

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