標籤:
mysql官網提供了各類mysqlclient,提供開發人員使用進行mysql介面開發,其中linux版本根據分支和分支版本提供了各不相同的包。
由於我的是ubuntu 16.04的最新版本,並沒有找到相對應的開發包,而且考慮到後續版本升級和移植問題,還是採用源碼包的方式最為可靠。
但是源碼包並沒有提供安裝說明,找了半天在官網找到了安裝教程。
4.2.1 Installing Connector/C from Source on Unix and Unix-Like Systems
If the native compiler toolset for the target platform is available (for example, SunStudio for Solaris), you can use that for compilation. Alternatively, the GNU toolset can be used on all platforms.
You also need CMake 2.6 or newer, which is available from cmake.org.
To build and install the source distribution, use the following procedure:
Change location to the top-level directory of the source distribution.
Generate the Makefile:
shell> cmake -G "Unix Makefiles"
Or, for a Debug build:
shell> cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug
By default, the installation location for Connector/C is /usr/local/mysql. To change this location, use the CMAKE_INSTALL_PREFIX option to specify a different directory when generating the Makefile. For example:
shell> cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=/opt/local/mysql
For other CMake options that you might find useful, see Other Connector/C Build Options.
Build the project:
shell> make
As root, install the Connector/C headers, libraries, and utilities:
root-shell> make install
執行完一系列cmake後將產生makefile檔案
注意將第二步中的install目錄設定到自己的檔案路徑下
MySQL - MySQL介面設計之mysql-connector-c源碼安裝