// file : odb/mysql/mysql-types.hxx // copyright : Copyright (c) 2005-2018 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #ifndef ODB_MYSQL_MYSQL_TYPES_HXX #define ODB_MYSQL_MYSQL_TYPES_HXX #include typedef char my_bool; typedef struct st_mysql_bind MYSQL_BIND; // MariaDB defines time types directly in mysql.h. Note that MariaDB is only // supported by the build2 build so we include the header as // unconditionally. // #ifdef LIBODB_MYSQL_MARIADB # include #else # ifdef LIBODB_MYSQL_INCLUDE_SHORT # include # else # include # endif #endif #endif // ODB_MYSQL_MYSQL_TYPES_HXX