comparison Framework/MySQL/MySQLStatement.cpp @ 189:b968e7bfa7f9

fix build against mariadb client
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 16 Dec 2020 15:49:32 +0100
parents 8a4cc1f715eb
children 3236894320d6
comparison
equal deleted inserted replaced
188:8a4cc1f715eb 189:b968e7bfa7f9
109 109
110 enum enum_field_types mysqlType_; 110 enum enum_field_types mysqlType_;
111 ValueType orthancType_; 111 ValueType orthancType_;
112 std::string buffer_; 112 std::string buffer_;
113 113
114 #if MYSQL_VERSION_ID < 80000 114 #if (MYSQL_VERSION_ID < 80000) || defined(MARIADB_VERSION_ID)
115 my_bool isNull_; 115 my_bool isNull_;
116 my_bool isError_; 116 my_bool isError_;
117 #else 117 #else
118 bool isNull_; 118 bool isNull_;
119 bool isError_; 119 bool isError_;