第2章:安装MySQL / 2.8. 使用源码分发版安装MySQL / 2.8.7. 在Windows下编译MySQL客户端

在源码文件中,应当在MySQL.h之前包括my_global.h

#include <my_global.h>
#include <mysql.h>

my_global.h包括你在Windows中编译程序所需要的Windows兼容文件(例如 windows.h)

可以将代码连接到动态libmysql.lib库,它只是一个包装器以便根据需要装载libmysql.dll,或连接静态mysqlclient.lib库。

MySQL客户端库编译为线程库,因此你应当将代码编译为多线程。