The MySQL C API underlies all the APIs used by other languages to communicate with MySQL.
The MySQL C API uses several defined data types beyond the standard C types. These types are defined in the mysql.h header file that must be included when compiling any program that uses the MySQL library.
FIELD_TYPE_DECIMAL (DECIMAL or NUMERIC)
FIELD_TYPE_DOUBLE (DOUBLE or REAL)
FIELD_TYPE_TIMESTAMP (TIMESTAMP)
FIELD_TYPE_DATETIME (DATETIME)
FIELD_TYPE_STRING (CHAR or VARCHAR)
FIELD_TYPE_BLOB (BLOB or TEXT)
FIELD_TYPE_CHAR (TINYINT) (Deprecated, replaced by FIELD_TYPE_TINY)
The following macros are provided to help examine the MYSQL_FIELD data:
Copyright © 2003 O'Reilly & Associates. All rights reserved.