关于mysql api中my_bool的取值范围的问题

WBOY
Release: 2016-06-07 17:20:02
Original
1021 people have browsed it

官方文档中给的描述为:A boolean type, for values that are true (non-zero) or false (zero). 意思是0为false,非0为true。但

my_bool 在mysql中被定义为:char

官方文档中给的描述为:A boolean type, for values that are true (non-zero) or false (zero). 意思是0为false,非0为true。

但是在其接口与具体实现中好像并不是完全按照文档说明的方式进行判断(my_bool值为真为假)。

比如随便找一个接口:

22.9.3.2. mysql_autocommit()

my_bool mysql_autocommit(MYSQL *mysql, my_bool mode)

Description

Sets autocommit mode on if mode is 1, off if mode is 0. (注意这里,,只有mode为1的时候才干事,并不是非0)

Return Values

Zero if successful. Nonzero if an error occurred. (既然想把my_bool当作bool来用,那么为什么返回值又用其返回错误码。)

Errors

None.

我们在项目中碰到过类似的问题,明明 my_bool类型的变量非0,确不被判断为真。汗,与文档描述相悖。

所以比较安全的做法是就把它当作bool来用, 赋值的时候直接用true false.

linux

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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!