mysql.cpp.driver.win32

所属分类:MySQL数据库
开发工具:Visual C++
文件大小:1090KB
下载次数:3
上传日期:2010-05-15 12:49:59
上 传 者raymanlee
说明:  mysql的C++连接驱动,用于开发基于mysql的客户端系统。
(mysql in C++ to connect the drive, for the development of systems based mysql client.)

文件列表:
mysql-connector-c++-noinstall-1.0.5-win32-vs2005\ANNOUNCEMENT (2679, 2009-04-18)
mysql-connector-c++-noinstall-1.0.5-win32-vs2005\COPYING (19451, 2009-04-18)
mysql-connector-c++-noinstall-1.0.5-win32-vs2005\include\cppconn\build_config.h (1103, 2009-04-18)
mysql-connector-c++-noinstall-1.0.5-win32-vs2005\include\cppconn\config.h (2185, 2009-04-18)
mysql-connector-c++-noinstall-1.0.5-win32-vs2005\include\cppconn\connection.h (2967, 2009-04-18)
mysql-connector-c++-noinstall-1.0.5-win32-vs2005\include\cppconn\datatype.h (898, 2009-04-18)
mysql-connector-c++-noinstall-1.0.5-win32-vs2005\include\cppconn\driver.h (1251, 2009-04-18)
mysql-connector-c++-noinstall-1.0.5-win32-vs2005\include\cppconn\exception.h (3890, 2009-04-18)
mysql-connector-c++-noinstall-1.0.5-win32-vs2005\include\cppconn\metadata.h (12202, 2009-04-18)
mysql-connector-c++-noinstall-1.0.5-win32-vs2005\include\cppconn\parameter_metadata.h (938, 2009-04-18)
mysql-connector-c++-noinstall-1.0.5-win32-vs2005\include\cppconn\prepared_statement.h (2187, 2009-04-18)
mysql-connector-c++-noinstall-1.0.5-win32-vs2005\include\cppconn\resultset.h (3114, 2009-04-18)
mysql-connector-c++-noinstall-1.0.5-win32-vs2005\include\cppconn\resultset_metadata.h (2020, 2009-04-18)
mysql-connector-c++-noinstall-1.0.5-win32-vs2005\include\cppconn\statement.h (1350, 2009-04-18)
mysql-connector-c++-noinstall-1.0.5-win32-vs2005\include\cppconn\warning.h (1965, 2009-04-18)
mysql-connector-c++-noinstall-1.0.5-win32-vs2005\include\mysql_connection.h (2994, 2009-04-18)
mysql-connector-c++-noinstall-1.0.5-win32-vs2005\include\mysql_driver.h (1583, 2009-04-18)
mysql-connector-c++-noinstall-1.0.5-win32-vs2005\lib\mysqlcppconn-static.lib (5307608, 2009-04-18)
mysql-connector-c++-noinstall-1.0.5-win32-vs2005\lib\mysqlcppconn.dll (454656, 2009-04-18)
mysql-connector-c++-noinstall-1.0.5-win32-vs2005\lib\mysqlcppconn.lib (41990, 2009-04-18)

MySQL Connector/C++ Copyright 2007-2008 MySQL AB, 2008-2009 Sun Microsystems Inc. CONTENTS * Contact * Installation * Prerequisites for building Connector/C++ * Building on Unix * Run CMake to build a Makefile * Use make to build the libraries * CMake options: MySQL installation path, debug version and more * Building on Solaris * Building on Windows * Source layout * (if binary package) Further Platform Notes on Building CONTACT For general discussion of the MySQL Connector/C++ please use the C/C++ community forum at http://forums.mysql.com/list.php?167 or join the MySQL Connector/C++ mailing list at http://lists.mysql.com . Bugs can be reported at http://bugs.mysql.com . For sales related questions please write to . See also http://forge.mysql.com/wiki/Connector_C%2B%2B . INSTALLATION The MySQL Driver for C++ is distributed in source and binary form. The binary distributions are available as TAR.GZ archives for all supported platforms but Windows. On Windows you either use a MSI Installer or unpack a ZIP archive to an appropriate place. Please check the Reference Manual for further information at: http://dev.mysql.com/doc/refman/6.0/en/connector-cpp.html Notes on building the driver from source can be found in the Reference Manual and below. At the end of this file you may find settings we have used to build a binary package for your platform. PREREQUISITES FOR BUILDING CONNECTOR/C++ The MySQL Connector/C++ is based on the MySQL client libary (MySQL C API). Connector C/C++ is linked against the MySQL client library. You need to have the MySQL client library installed in order to compile the Connector/C++. Typically the MySQL client library gets installed by installing the MySQL Server. However, check your operating system documentation for other installation options. Alternatively you can install the new MySQL Connector/C. The MySQL Connector/C is a standalone version of the MySQL client library. You need to have CMake 2.6.2 (http://www.cmake.org). NOTE: cmake binaries are available for most systems. You do not need to build cmake yourself. BUILDING ON UNIX The MySQL Connector/C++ is using the cross platform make CMake. CMake creates classical Makefiles. Please visit http://www.cmake.org for further information and documentation. 1. Run CMake to build a Makefile me@host:/path/to/mysql-connector-cpp> cmake . -- Check for working C compiler: /usr/local/bin/gcc -- Check for working C compiler: /usr/local/bin/gcc -- works -- Check size of void* -- Check size of void* - done -- Check for working CXX compiler: /usr/bin/c++ -- Check for working CXX compiler: /usr/bin/c++ -- works -- mysql_config was found /usr/bin/mysql_config -- MySQL Include dir: /usr/include/mysql -- MySQL Library : -- MySQL Library dir: /usr/lib***/mysql;/usr/lib*** [...] -- Configuring done -- Generating done -- Build files have been written to: /path/to/mysql-connector-cpp Read on at point 3) in case of configure problems. 2. Use make to build the libraries me@host:/path/to/mysql-connector-cpp> make clean me@host:/path/to/mysql-connector-cpp> make Scanning dependencies of target mysqlcppconn [ 0%] Building CXX object driver/CMakeFiles/mysqlcppconn.dir/mysql_art_resultset.o [ 1%] Building CXX object driver/CMakeFiles/mysqlcppconn.dir/mysql_art_rset_metadata.o [ 2%] Building CXX object driver/CMakeFiles/mysqlcppconn.dir/mysql_connection.o [...] [100%] Building CXX object test/unit/template_bug_group/CMakeFiles/bug456.dir/bug456.o Linking CXX executable bug456 If all goes well, you will find the Connector/C++ library in /path/to/driver/libcppmysqlcppconn.so . In case of problems read on below before you ask for assistance. If you want to install the libraries on your system proceed with make install. me@host:/path/to/mysql-connector-cpp> make install 3. CMake options: MySQL installation path, debug version and more In case of configure and/or compile problems check the list of CMake options: me@host:/path/to/mysql-connector-cpp> cmake -L [...] CMAKE_BACKWARDS_COMPATIBILITY:STRING=2.4 CMAKE_BUILD_TYPE:STRING= CMAKE_INSTALL_PREFIX:PATH=/usr/local EXECUTABLE_OUTPUT_PATH:PATH= LIBRARY_OUTPUT_PATH:PATH= MYSQLCPPCONN_BUILD_EXAMPLES:BOOL=1 MYSQLCPPCONN_GCOV_ENABLE:BOOL=0 MYSQLCPPCONN_STLPORT_ENABLE:BOOL=0 MYSQLCPPCONN_TRACE_ENABLE:BOOL=0 MYSQL_CONFIG_EXECUTABLE:FILEPATH=/usr/bin/mysql_config You may also try cmake -LA to get a list of all options including the advanced options. For example, if your MySQL Server installation path is not /usr/local/mysql and you want to build a debug version of the MySQL Connector/C++ use: me@host:/path/to/mysql-connector-cpp> cmake -DCMAKE_BUILD_TYPE:STRING=Debug -DMYSQL_CONFIG_EXECUTABLE:FILEPATH=/path/to/my/mysql/server/bin/mysql_config . Verify your settings with cmake -L: me@host:/path/to/mysql-connector-cpp> cmake -L [...] CMAKE_BACKWARDS_COMPATIBILITY:STRING=2.4 CMAKE_BUILD_TYPE:STRING=Debug CMAKE_INSTALL_PREFIX:PATH=/usr/local EXECUTABLE_OUTPUT_PATH:PATH= LIBRARY_OUTPUT_PATH:PATH= MYSQLCPPCONN_BUILD_EXAMPLES:BOOL=1 MYSQLCPPCONN_GCOV_ENABLE:BOOL=0 MYSQLCPPCONN_STLPORT_ENABLE:BOOL=0 MYSQLCPPCONN_TRACE_ENABLE:BOOL=0 MYSQL_CONFIG_EXECUTABLE=/path/to/my/mysql/server/bin/mysql_config Procees with make clean; make as described at point 2.) NOTE: cmake does cache settings in the file CMakeCache.txt. Make sure that cmake does not use old and unwanted settings from CMakeCache.txt. This may cause compile problems. If so, delete CMakeCache.txt, configure custom settings with cmake -D, if any and try compiling again. BUILDING ON SOLARIS Use the Sun compiler to build the MySQL Connector/C++. Ensure that your environment points cmake to the appropriate compiler binaries. The binary distributions of the MySQL Server are build using Sun compilers. The MySQL tool mysql_config returns compiler flags suitable for Sun compilers but possibly not suitable for GCC. If you plan to use GCC on Solaris to compile MySQL Connector/C++, you might need to insert SET(MYSQL_CXXFLAGS "") at the end of the file /path/to/mysql-connector-cpp/FindMySQL.cm. However, its recommended to use Sun Studio on Solaris. No changes are required when using the Sun compilers! Make sure that you do not mix Sun compilers with GNU compilers when building the MySQL Connector/C++. For example, do not use GCC as a C compiler and Sun CC as a C++ compiler. The linker might fail to link the results from both compilers to one binary. BUILDING ON WINDOWS The MySQL Connector/C++ is using the cross platform make CMake. CMake creates classical Makefiles. Please visit http://www.cmake.org for further information and documentation. You need to have the environment variables set for the Visual Studio toolchain. Visual Studio includes a batch file to set these for you, and installs a shortcut into the Start menu to open a command prompt with these variables set. You need to set MYSQL_DIR to point to where the MySQL server is installed, using the short-style filenames: set MYSQL_DIR=C:\PROGRA~1\MySQL\MYSQLS~1.0 Build Connector/C++ using the "cmake" command-line tool by doing the following from the source root directory (in a command prompt window); 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: devenv.com MySQLCPPCONN.sln /build Release devenv.com MySQLCPPCONN.sln /build RelWithDebInfo To compile the "Debug" build, you must run set the cmake build type so the correct version of the MySQL client libraries are used: cmake -G "Visual Studio 8 2005" -DCMAKE_BUILD_TYPE=Debug devenv.com MySQLCPPCONN.sln /build Debug Upon completion; you will find the executables in the subdirectories of the "bin" and "lib" directories. Different versions of CMake come with different "generators". A generator is the component of CMake that is responsible for writing the build files. If, for example, cmake --help does not list a generator for Visual Studio 9 2008, try a more recent version of CMake. Connector C/C++ supports only Microsoft Visual Studio 2003 and above on Windows. SOURCE LAYOUT The MySQL Connector/C++ distribution contains the following directories: |-- cppconn <-- Header files of the public interface |-- driver <-- Connector/C++ source code |-- examples <-- Basic examples |-- test <-- Tests, so to say: more examples |-- thread <-- Thread abstaction, unused --- win <-- Windows MSI Installer FURTHER PLATFORM NOTES ON BUILDING If this README file is contained in a binary package, you will see below what settings we have used to create the biary. If this README file is contained in a source package and, you have build issues, please download a binary package for your platform and check the platform specific notes found in its README.

近期下载者

相关文件


收藏者