123456789101112131415161718192021222324252627282930313233343536373839 |
- #ifndef BOOST_MYSQL_DETAIL_COLDEF_VIEW_HPP
- #define BOOST_MYSQL_DETAIL_COLDEF_VIEW_HPP
- #include <boost/mysql/column_type.hpp>
- #include <boost/mysql/string_view.hpp>
- #include <cstdint>
- namespace boost {
- namespace mysql {
- namespace detail {
- struct coldef_view
- {
- string_view database;
- string_view table;
- string_view org_table;
- string_view name;
- string_view org_name;
- std::uint16_t collation_id;
- std::uint32_t column_length;
- column_type type;
- std::uint16_t flags;
- std::uint8_t decimals;
-
- };
- }
- }
- }
- #endif
|