mirror of https://github.com/adamdruppe/arsd.git
Fixed MYSQL_FIELD for MySQL client >= v5.1
This commit is contained in:
parent
5ca95d6d10
commit
1fd6272210
6
mysql.d
6
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;
|
module arsd.mysql;
|
||||||
version(Windows) {
|
version(Windows) {
|
||||||
pragma(lib, "libmysql");
|
pragma(lib, "libmysql");
|
||||||
|
@ -597,6 +599,10 @@ extern(System) {
|
||||||
uint charsetnr; /* Character set */
|
uint charsetnr; /* Character set */
|
||||||
uint type; /* Type of field. See mysql_com.h for types */
|
uint type; /* Type of field. See mysql_com.h for types */
|
||||||
// type is actually an enum btw
|
// type is actually an enum btw
|
||||||
|
|
||||||
|
version(MySQL_51) {
|
||||||
|
void* extension;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
typedef cstring* MYSQL_ROW;
|
typedef cstring* MYSQL_ROW;
|
||||||
|
|
Loading…
Reference in New Issue