mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
Remove uses of TRUE/FALSE in mysqli/pdo_mysql
Replace with standard uses of true/false.
This commit is contained in:
parent
b55793e45b
commit
b0961f2d04
9 changed files with 43 additions and 51 deletions
|
@ -37,7 +37,7 @@
|
|||
/* functions */
|
||||
#define mysql_affected_rows(r) mysqlnd_affected_rows((r))
|
||||
#define mysql_autocommit(r,m) mysqlnd_autocommit((r),(m))
|
||||
#define mysql_change_user(r,a,b,c) mysqlnd_change_user((r), (a), (b), (c), FALSE)
|
||||
#define mysql_change_user(r,a,b,c) mysqlnd_change_user((r), (a), (b), (c), false)
|
||||
#define mysql_character_set_name(c) mysqlnd_character_set_name((c))
|
||||
#define mysql_close(r) mysqlnd_close((r), MYSQLND_CLOSE_EXPLICIT)
|
||||
#define mysql_commit(r) mysqlnd_commit((r), TRANS_COR_NO_OPT, NULL)
|
||||
|
@ -104,7 +104,7 @@
|
|||
#define mysql_options(c,a,v) mysqlnd_options((c), (a), (v))
|
||||
#define mysql_options4(c,a,k,v) mysqlnd_options4((c), (a), (k), (v))
|
||||
#define mysql_stmt_init(r) mysqlnd_stmt_init((r))
|
||||
#define mysql_free_result(r) mysqlnd_free_result((r), FALSE)
|
||||
#define mysql_free_result(r) mysqlnd_free_result((r), false)
|
||||
#define mysql_store_result(r) mysqlnd_store_result((r))
|
||||
#define mysql_use_result(r) mysqlnd_use_result((r))
|
||||
#define mysql_async_store_result(r) mysqlnd_async_store_result((r))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue