Searched refs:max_persistent (Results 1 – 23 of 23) sorted by relevance
/php-src/ext/mysqli/tests/ |
H A D | bug54674.phpt | 12 mysqli.max_persistent = 0
|
H A D | bug54221.phpt | 12 mysqli.max_persistent = 0
|
H A D | bug51605.phpt | 12 mysqli.max_persistent = 0
|
H A D | mysqli_phpinfo.phpt | 47 'mysqli.allow_persistent', 'mysqli.max_persistent'
|
H A D | bug49442.phpt | 23 mysqli.max_persistent=1 70 …ider it as a 'persistent' connection in a user sense, ext/mysqli will not apply max_persistent etc.
|
H A D | mysqli_pconn_max_links.phpt | 44 mysqli.max_persistent=2 188 if ($num_plinks > (int)ini_get('mysqli.max_persistent')) 189 …printf("[017] mysqli.max_persistent=%d allows %d open connections!\n", ini_get('mysqli.max_persist…
|
H A D | mysqli_pconn_disabled.phpt | 13 mysqli.max_persistent=2
|
H A D | bug68077.phpt | 21 mysqli.max_persistent=1
|
H A D | mysqli_pconn_twice.phpt | 12 mysqli.max_persistent=-1
|
H A D | mysqli_pconn_limits.phpt | 11 mysqli.max_persistent=-1
|
H A D | mysqli_pconn_reuse.phpt | 13 mysqli.max_persistent=2
|
H A D | mysqli_pconn_kill.phpt | 11 mysqli.max_persistent=2
|
H A D | mysqli_real_connect_pconn.phpt | 12 mysqli.max_persistent=10
|
H A D | mysqli_pconn_conn_multiple.phpt | 11 mysqli.max_persistent=-1
|
/php-src/ext/odbc/ |
H A D | php_odbc_includes.h | 238 zend_long max_persistent; variable
|
H A D | php_odbc.c | 468 max_persistent, zend_odbc_globals, odbc_globals, display_link_nums) 2327 if (ODBCG(max_persistent) != -1 && ODBCG(num_persistent) >= ODBCG(max_persistent)) {
|
/php-src/ext/pgsql/ |
H A D | php_pgsql.h | 182 zend_long max_links,max_persistent;
|
H A D | pgsql.c | 482 …X("pgsql.max_persistent", "-1", PHP_INI_SYSTEM, OnUpdateLong, max_persistent, zend_p… 691 if (PGG(max_persistent) != -1 && PGG(num_persistent) >= PGG(max_persistent)) { in php_pgsql_do_connect()
|
/php-src/ext/mysqli/ |
H A D | php_mysqli_structs.h | 243 zend_long max_persistent; variable
|
H A D | mysqli.c | 431 …Y_EX("mysqli.max_persistent", "-1", PHP_INI_SYSTEM, OnUpdateLong, max_persistent, zend_mysqli_… 458 mysqli_globals->max_persistent = -1; in PHP_INI_END()
|
H A D | mysqli_nonapi.c | 213 if (persistent && MyG(max_persistent) != -1 && 214 (MyG(num_active_persistent) + MyG(num_inactive_persistent))>= MyG(max_persistent))
|
/php-src/ |
H A D | php.ini-development | 1117 odbc.max_persistent = -1 1138 mysqli.max_persistent = -1 1235 pgsql.max_persistent = -1
|
H A D | php.ini-production | 1119 odbc.max_persistent = -1 1140 mysqli.max_persistent = -1 1237 pgsql.max_persistent = -1
|
Completed in 60 milliseconds