Searched refs:reconnect (Results 1 – 19 of 19) sorted by relevance
/PHP-8.0/ext/mysqli/tests/ |
H A D | mysqli_driver.phpt | 95 $reconnect = $driver->reconnect; 96 if (!is_bool($reconnect)) 98 gettype($reconnect), $reconnect); 101 $driver->reconnect = true; 102 $driver->reconnect = false; 103 $driver->reconnect = $reconnect;
|
H A D | mysqli_class_mysqli_driver_interface.phpt | 75 printf("driver->reconnect = '%s'\n", $driver->reconnect); 93 reconnect 100 reconnect 108 driver->reconnect = ''
|
H A D | 073.phpt | 12 var_dump($driver->reconnect);
|
H A D | mysqli_phpinfo.phpt | 43 if (!stristr($phpinfo, "mysqli.reconnect")) 44 printf("[009] php.ini setting mysqli.reconnect not shown.\n");
|
H A D | bug54674.phpt | 12 mysqli.reconnect = Off
|
H A D | bug54221.phpt | 12 mysqli.reconnect = Off
|
H A D | bug51605.phpt | 12 mysqli.reconnect = Off
|
H A D | mysqli_reconnect.phpt | 2 Trying implicit reconnect after wait_timeout and KILL using mysqli_ping() 11 mysqli.reconnect=1
|
H A D | mysqli_no_reconnect.phpt | 2 Trying implicit reconnect after wait_timeout and KILL using mysqli_ping() 9 mysqli.reconnect=0
|
H A D | mysqli_get_client_stats.phpt | 1051 ["reconnect"]=>
|
/PHP-8.0/ext/mysqli/ |
H A D | mysqli_driver.c | 108 MAP_PROPERTY_MYG_BOOL_READ(driver_reconnect_read, reconnect) in MAP_PROPERTY_MYG_BOOL_READ() argument 109 MAP_PROPERTY_MYG_BOOL_WRITE(driver_reconnect_write, reconnect) in MAP_PROPERTY_MYG_BOOL_READ()
|
H A D | php_mysqli_structs.h | 283 zend_long reconnect; variable
|
H A D | mysqli_nonapi.c | 329 char reconnect = MyG(reconnect); local 330 mysql_options(mysql->mysql, MYSQL_OPT_RECONNECT, (char *)&reconnect);
|
H A D | mysqli.c | 500 …STD_PHP_INI_BOOLEAN("mysqli.reconnect", "0", PHP_INI_SYSTEM, OnUpdateLong, reconnect, zend_… 522 mysqli_globals->reconnect = 0; in PHP_INI_END()
|
/PHP-8.0/ext/oci8/tests/ |
H A D | testping.phpt | 2 Exercise OCIPing functionality on reconnect (code coverage test)
|
/PHP-8.0/ext/pdo_mysql/ |
H A D | mysql_driver.c | 728 zend_long reconnect = 1; local 729 mysql_options(H->server, MYSQL_OPT_RECONNECT, (const char*)&reconnect);
|
/PHP-8.0/ext/mysqlnd/ |
H A D | mysqlnd_connection.c | 597 zend_bool reconnect = FALSE; local 623 reconnect = TRUE; 774 if (reconnect) {
|
/PHP-8.0/ |
H A D | php.ini-development | 1190 ; Allow or prevent reconnect 1191 mysqli.reconnect = Off
|
H A D | php.ini-production | 1192 ; Allow or prevent reconnect 1193 mysqli.reconnect = Off
|
Completed in 37 milliseconds