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 an older version of Boost and was released in 2024. The current version is 1.89.0.
Represents the database type of a MySQL column.
Defined in header <boost/mysql/column_type.hpp>
enum column_type
|
Name |
Description |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
None of the known types; maybe a new MySQL type we have no knowledge of. |
This represents a database type, as opposed to field_kind, which represents a C++
type.
Unless otherwise noted, the names in this enumeration directly correspond
to the names of the types you would use in a CREATE
TABLE statement to create a column
of this type (e.g. VARCHAR
corresponds to column_type::varchar).