Spec-Zone .ru
спецификации, руководства, описания, API
|
You only need to build Connector/ODBC from source on Windows to modify the source or installation location. If you are unsure whether to install from source, please use the binary installation detailed in Section 22.1.3.1, "Installing Connector/ODBC on Windows".
Building Connector/ODBC from source on Windows requires a number of different tools and packages:
MDAC, Microsoft Data Access SDK from
Suitable C compiler, such as Microsoft Visual C++ or the C compiler included with Microsoft Visual Studio.
Microsoft Visual Studio 7 and 8 are preferred, and well-tested.
Connector/ODBC 5.2: cmake
.
MySQL client libraries and include files from MySQL 4.0.0 or higher. (Preferably
MySQL 4.0.16 or higher). This is required because Connector/ODBC uses calls and structures that exist
only starting from this version of the library. To get the client libraries and include files, visit
Set the environment variables for the Visual Studio toolchain. Visual Studio includes a batch file to set these for you, and installs a Start menu shortcut that opens a command prompt with these variables set.
Set MYSQL_DIR
to the MySQL server installation path, while using the short-style
file names. For example:
C:\> set
MYSQL_DIR=C:\PROGRA~1\MySQL\MYSQLS~1.0
Build Connector/ODBC using the cmake command-line tool by executing the following from the source root directory (in a command prompt window):
C:\> cmake -G "Visual Studio 8 2005"
This produces a project file that you can open with Visual Studio, or build from the command line with either of the following commands:
C:\>devenv.com MySQL_Connector_ODBC.sln /build Release
C:\>devenv.com MySQL_Connector_ODBC.sln /build RelWithDebInfo
To compile a debug build, set the cmake build type so that the correct versions of the MySQL client libraries are used:
C:\>cmake -G "Visual Studio 8 2005" -DWITH_DEBUG=1
C:\>devenv.com MySQL_Connector_ODBC.sln /build Debug
Upon completion, the executables are in the bin/
and lib/
subdirectories.
See Section 22.1.3.1.2, "Installing the Windows Connector/ODBC Driver Using the Zipped DLL Package" for the copy commands to complete the installation.