We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b83fa63 + c64dd0f commit fde43d0Copy full SHA for fde43d0
1 file changed
src/mysql.cpp
@@ -38,7 +38,11 @@ struct MySqlBind : public MYSQL_BIND
38
struct MySqlColumn
39
{
40
//! NULL value indicator
41
+ #if defined(LIBMYSQL_VERSION_ID) && LIBMYSQL_VERSION_ID >= 80000
42
+ bool is_null;
43
+ #else
44
my_bool is_null;
45
+ #endif
46
47
//! output string data, currently extra long strings are truncated.
48
char strdata[128];
0 commit comments