Home > Database > Mysql Tutorial > C++向MySQL写入或读取中文

C++向MySQL写入或读取中文

WBOY
Release: 2016-06-07 16:57:21
Original
1289 people have browsed it

工作中需要向MySQL插入和读写中文数据,这个问题起初比较棘手,经过一段时间的investigate,顺利的解决了。以下是解决办法:1. 设

工作中需要向MySQL插入和读写中文数据,这个问题起初比较棘手,经过一段时间的investigate,顺利的解决了。

以下是解决办法:

1. 设置MySQL服务器的字符集,是的MySQL服务器的默认字符集为UTF8;

2. 设置表或列的字符集,最好使用UTF8编码,可以同时支持中英文。

3. 连接后,,调用接口int mysql_set_character_set(mysql *mysql, char *csname),该函数为当前连接设置默认的字符集。

注意的是,只有MySQL 5.0.7及以上版本支持该函数。低版本的话,可以用set names 语句来代替。

4.向MySQL读写的时候,把字符串都转为utf8编码。英文的utf8编码和ansi是一样的,中文的会有区别。

以上就是我的解决方案,如有问题,请联系本人.

linux

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template