资源简介
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文件,亲测可用
- 下一篇:车辆调度监控管理系统
相关资源
- mysql实验训练4-数据库系统维护.docx
- MySQL经典教程
- 基于springmvc+mybatis+spring+maven+mysql的网
- 网上书城购物 MVC框架
- linux 上的 mysql 连接驱动类文件包
- struts2 mysql实现简单学生成绩管理代码
- mysql-connector-odbc-5.2.6-winx64.msi
- 本文主要介绍NodeJS+Express+Mysql实现用户
- Struts框架 用户登录系统 连接MYsql数据
- 微博--登录功能实现
- lazarus-mysql5.7.zip
- spring+springmvc+mybatis完善的增删改查,
- Haproxy+Keeplived做Mysql和web负载高可用
- MySQL完全教程.pdf
- mysql-connector-net-6.9.9
- MySQL5.1官方中文参考手册
- MySQL与MariaDB学习指南.pdf
- SQL Server ODBC 驱动
- 新闻发布系统MySQL.rar
- MySQL5.7安装与配置详细教程
- MySQL Data(世界上78700多个城市地区(
- MySQL-5.5以上JDBC驱动包
- 基于springboot+layui+shiro+mysql编写的医院
- DBImport破解版sqlitetomysqltoOracle.rar
- 2016年版-汽车之家车型数据库Mysql
- JDBC连接MySQL驱动
- 农历数据库1970-2100年mysql
- 掘金小册MySQL是怎样运行的:从根儿上
- MySQL 数据库系统设计实现与管理第六
- 微信小程序后台Springboot+Mysql
评论
共有 条评论