From 1fd6272210d27d6aa54b5f680aaaf21af7225bb6 Mon Sep 17 00:00:00 2001 From: Abscissa Date: Tue, 26 Jul 2011 02:22:13 -0400 Subject: [PATCH] Fixed MYSQL_FIELD for MySQL client >= v5.1 --- mysql.d | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mysql.d b/mysql.d index 14d68b7..8027c95 100644 --- a/mysql.d +++ b/mysql.d @@ -1,3 +1,5 @@ +/// NOTE: If you're using MySQL client library v5.1 or greater, +/// you must pass this to dmd: -version=MySQL_51 module arsd.mysql; version(Windows) { pragma(lib, "libmysql"); @@ -597,6 +599,10 @@ extern(System) { uint charsetnr; /* Character set */ uint type; /* Type of field. See mysql_com.h for types */ // type is actually an enum btw + + version(MySQL_51) { + void* extension; + } } typedef cstring* MYSQL_ROW;