博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++与MySQL的冲突
阅读量:5736 次
发布时间:2019-06-18

本文共 1962 字,大约阅读时间需要 6 分钟。

当在C++代码中,直接引用MySQL文件时,可能会遇到如下错误

In file included from /usr/include/c++/4.1.0/bits/char_traits.h:46,
                 from /usr/include/c++/4.1.0/string:46,
/usr/include/c++/4.1.0/bits/stl_algobase.h:92:28: error: macro "swap" requires 3 arguments, but only 2 given
/usr/include/c++/4.1.0/bits/stl_algobase.h:127:26: error: macro "swap" requires 3 arguments, but only 2 given

/usr/include/c++/4.1.0/bits/vector.tcc:176:20: error: macro "swap" requires 3 arguments, but only 1 given
/usr/include/c++/4.1.0/cctype:70: error: '::isalnum' has not been declared
/usr/include/c++/4.1.0/cctype:71: error: '::isalpha' has not been declared
/usr/include/c++/4.1.0/cctype:72: error: '::iscntrl' has not been declared
/usr/include/c++/4.1.0/cctype:73: error: '::isdigit' has not been declared
/usr/include/c++/4.1.0/cctype:74: error: '::isgraph' has not been declared
/usr/include/c++/4.1.0/cctype:75: error: '::islower' has not been declared
/usr/include/c++/4.1.0/cctype:76: error: '::isprint' has not been declared
/usr/include/c++/4.1.0/cctype:77: error: '::ispunct' has not been declared
/usr/include/c++/4.1.0/cctype:78: error: '::isspace' has not been declared
/usr/include/c++/4.1.0/cctype:79: error: '::isupper' has not been declared
/usr/include/c++/4.1.0/cctype:80: error: '::isxdigit' has not been declared
/usr/include/c++/4.1.0/cctype:81: error: '::tolower' has not been declared
/usr/include/c++/4.1.0/cctype:82: error: '::toupper' has not been declared

解决办法:
尽量对MySQL进行二次包装,让调用者看不到MySQL头文件,如在CPP中包含:
#include <my_global.h>
#include <my_sys.h>
#include <mysql.h>


在头文件中只进行引用声明:
struct st_mysql;
struct st_mysql_res;

typedef long num_t;
typedef char ** MYSQL_ROW;  /** return data as array of strings */


不要在头文件直接include到MySQL的头文件,而且保证只在一个CPP文件中有对MySQL文件的include,否则你可能遇到很多莫名其妙的编译错误,如果不想到这一点,即使花一天时间也未必能找到错误原因。

补充:
MySQL4.x和MySQL5.x头文件不兼容的,最好使用5.x版本
补充:
有些版本只能引用#include <mysql.h>,包含其它会报C++标准库中某文件错误。
原帖发在我的论坛:

转载于:https://www.cnblogs.com/aquester/archive/2012/07/24/9891864.html

你可能感兴趣的文章
PHP json_encode() 函数介绍
查看>>
js动态设置元素高度
查看>>
Ossim下的安全合规管理
查看>>
如何让一个linux命令后台运行,而不受终端影响
查看>>
DelphiWebMVC框架下BPL热部署实现
查看>>
C++与MySQL的冲突
查看>>
siki学习之观察者模式笔记
查看>>
PYQT窗口可视化编程
查看>>
单元测试
查看>>
spring.net 继承
查看>>
ES6:模块简单解释
查看>>
JavaScript indexOf() 方法
查看>>
Java 8 新特性:2-消费者(Consumer)接口
查看>>
用Bootstrap写一份简历
查看>>
ZJU PAT 1023
查看>>
WMI远程访问问题解决方法
查看>>
从零开始学习IOS,(UILabel控件)详细使用和特殊效果
查看>>
Android开发历程_15(AppWidget的使用)
查看>>
阿花宝宝 Java 笔记 之 初识java
查看>>
7、设计模式-创建型模式-建造者模式
查看>>