Go to the documentation of this file.
28 #ifndef MYSQLPP_FIELD_TYPES_H
29 #define MYSQLPP_FIELD_TYPES_H
37 #if !defined(DOXYGEN_IGNORE)
39 class MYSQLPP_EXPORT ResultBase;
43 class FieldTypes :
public std::vector<mysql_type_info>
57 std::vector<mysql_type_info>(i)
79 void init(
const ResultBase* res);
Declares a class to hold a list of SQL field type info.
FieldTypes()
Default constructor.
Definition: field_types.h:91
FieldTypes & operator=(const ResultBase *res)
Initialize field list based on a result set.
Definition: field_types.h:106
Declares classes that provide an interface between the SQL and C++ type systems.
Declares classes for holding information about SQL query results.
This file includes top-level definitions for use both internal to the library, and outside it....
SQL field type information.
Definition: type_info.h:170
A vector of SQL field types.
Definition: field_types.h:65