资源简介
mysql 驱动mysql-connector-c-6.0.2.tar.gz ,可以在linux用gcc编译使用,编译后,可以用C等直接调用
代码片段和文件信息
#ifdef __cplusplus
# error “A C++ compiler has been selected for C.“
#endif
#if defined(__18CXX)
# define ID_VOID_MAIN
#endif
#if defined(__INTEL_COMPILER) || defined(__ICC)
# define COMPILER_ID “Intel“
#elif defined(__BORLANDC__)
# define COMPILER_ID “Borland“
#elif defined(__WATCOMC__)
# define COMPILER_ID “Watcom“
#elif defined(__SUNPRO_C)
# define COMPILER_ID “SunPro“
#elif defined(__HP_cc)
# define COMPILER_ID “HP“
#elif defined(__DECC)
# define COMPILER_ID “Compaq“
#elif defined(__IBMC__)
# define COMPILER_ID “VisualAge“
#elif defined(__PGI)
# define COMPILER_ID “PGI“
#elif defined(__GNUC__)
# define COMPILER_ID “GNU“
#elif defined(_MSC_VER)
# define COMPILER_ID “MSVC“
#elif defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
/* Analog Devices C++ compiler for Blackfin TigerSHARC and
SHARC (21000) DSPs */
# define COMPILER_ID “ADSP“
/* IAR Systems compiler for embedded systems.
http://www.iar.com
Not supported yet by CMake
#elif defined(__IAR_SYSTEMS_ICC__)
# define COMPILER_ID “IAR“ */
/* sdcc the small devices C compiler for embedded systems
http://sdcc.sourceforge.net */
#elif defined(SDCC)
# define COMPILER_ID “SDCC“
#elif defined(_COMPILER_VERSION)
# define COMPILER_ID “MIPSpro“
/* This compiler is either not known or is too old to define an
identification macro. Try to identify the platform and guess that
it is the native compiler. */
#elif defined(__sgi)
# define COMPILER_ID “MIPSpro“
#elif defined(__hpux) || defined(__hpua)
# define COMPILER_ID “HP“
#else /* unknown compiler */
# define COMPILER_ID ““
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char* info_compiler = “INFO“ “:“ “compiler[“ COMPILER_ID “]“;
/* Identify known platforms by name. */
#if defined(__linux) || defined(__linux__) || defined(linux)
# define PLATFORM_ID “Linux“
#elif defined(__CYGWIN__)
# define PLATFORM_ID “Cygwin“
#elif defined(__MINGW32__)
# define PLATFORM_ID “MinGW“
#elif defined(__APPLE__)
# define PLATFORM_ID “Darwin“
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
# define PLATFORM_ID “Windows“
#elif defined(__FreeBSD__) || defined(__FreeBSD)
# define PLATFORM_ID “FreeBSD“
#elif defined(__NetBSD__) || defined(__NetBSD)
# define PLATFORM_ID “NetBSD“
#elif defined(__OpenBSD__) || defined(__OPENBSD)
# define PLATFORM_ID “OpenBSD“
#elif defined(__sun) || defined(sun)
# define PLATFORM_ID “SunOS“
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
# define PLATFORM_ID “AIX“
#elif defined(__sgi) || defined(__sgi__) || defined(_SGI)
# define PLATFORM_ID “IRIX“
#elif defined(__hpux) || defined(__hpux__)
# define PLATFORM_ID “HP-UX“
#elif defined(__HAIKU) || defined(__HAIKU__) || defined(_HAIKU)
# def
- 上一篇:淘淘商城数据库表sql文件,亲测可用
- 下一篇:车辆调度监控管理系统
相关资源
- php mysql经典留言本源码 代码通俗易懂
- PHP MySQL 物流管理 数据库文件
- PHP MySQL 技术 毕业设计 物流管理系统
- php mysql 在线作业管理系统
- MySql.data.dll +使用说明
- 图书管理系统 PHP MYSQL实现
- [PHP MySQL]图书馆管理系统前后台全部代
- 基于PHP+MYSQL的学生成绩管理系统
- Spring+Struts2+Hibernate人力资源管理系统
- 我自己写php mysql聊天室
- mysql 数据库连接池
- 完整的php mysql js用户注册与登陆
- MySQL数据库用户在线注册系统
- mysql数据库驱动8.0.12版本
- mha4mysql-0.56-0.el6
- mysql_5.6.24_winx64
- MYSQL作业提交作业批改系统.zip
- Maven搭建Spring+Mybatis+MySql
- 成语首尾字用于成语接龙.sql
- MySQL中文手册api帮助文档
- linux_mysql5.1.66x86_64.zip
- oracle 到mysql转换工具
- 数据库原理实验指导书Mysql
- mysql 5.6 绿色精简版 5Mb
- mysql Premium 破解
- 深入浅出MySQL第二版本pdf
- 深入浅出MySQL.pdf
- 深入浅出mysql全文
- 全球国家及地区库,采集自腾讯QQ国内
- mysql操作练习的表数据
评论
共有 条评论