Home
last modified time | relevance | path

Searched refs:persistent (Results 76 – 100 of 122) sorted by relevance

12345

/PHP-5.3/ext/mysqli/tests/
H A Dmysqli_pconn_twice.phpt2 Calling connect() on an open persistent connection to create a new persistent connection
H A Dmysqli_connect.phpt128 printf("[021] Usage of mysqli.default_host (persistent) failed\n") ;
130 if (!$res = mysqli_query($link, "SELECT 'mysqli.default_host (persistent)' AS 'testing'"))
133 if ($tmp['testing'] !== 'mysqli.default_host (persistent)') {
H A Dmysqli_real_connect.phpt145 printf("[022] Usage of mysqli.default_host=p:%s (persistent) failed\n", $host) ;
147 if (!$res = mysqli_query($link, "SELECT 'mysqli.default_host (persistent)' AS 'testing'"))
150 if ($tmp['testing'] !== 'mysqli.default_host (persistent)') {
H A Dmysqli_pconn_disabled.phpt26 …printf("[002] Cannot set user variable to check if we got the same persistent connection, [%d] %s\…
H A Dmysqli_pconn_conn_multiple.phpt2 Calling connect() on an open persistent connection to create a new persistent connection
/PHP-5.3/
H A Dphp.ini-development1138 ; Allow or prevent persistent links.
1147 ; http://php.net/odbc.max-persistent
1150 ; Maximum number of links (persistent + non-persistent). -1 means no limit.
1168 ; Allow or prevent persistent links.
1174 ; Maximum number of links (persistent + non-persistent). -1 means no limit.
1203 ; Allow or prevent persistent links.
1215 ; Maximum number of links (persistent + non-persistent). -1 means no limit.
1266 ; Allow or prevent persistent links.
1396 ; Maximum number of links (persistent+non persistent). -1 means no limit.
1419 ; Maximum number of links (persistent + non-persistent). -1 means no limit.
[all …]
H A Dphp.ini-production1138 ; Allow or prevent persistent links.
1147 ; http://php.net/odbc.max-persistent
1150 ; Maximum number of links (persistent + non-persistent). -1 means no limit.
1168 ; Allow or prevent persistent links.
1174 ; Maximum number of links (persistent + non-persistent). -1 means no limit.
1203 ; Allow or prevent persistent links.
1215 ; Maximum number of links (persistent + non-persistent). -1 means no limit.
1266 ; Allow or prevent persistent links.
1396 ; Maximum number of links (persistent+non persistent). -1 means no limit.
1419 ; Maximum number of links (persistent + non-persistent). -1 means no limit.
[all …]
/PHP-5.3/ext/mysqli/
H A Dmysqli_nonapi.c66 zend_bool persistent = FALSE; local
156 mysql->persistent = persistent = TRUE;
208 if (persistent && MyG(max_persistent) != -1 &&
219 if (!(mysql->mysql = mysqlnd_init(persistent))) {
277 if (persistent && (new_connection || is_real_connect)) {
300 mysql->persistent = FALSE;
H A Dphp_mysqli_structs.h125 zend_bool persistent; member
/PHP-5.3/ext/mysql/tests/
H A Dmysql_max_persistent.phpt93 Warning: mysql_pconnect(): Too many open persistent links (1) in %s on line %d
97 resource(%d) of type (mysql link persistent)
/PHP-5.3/ext/oci8/tests/
H A Dconn_attr_3.phpt71 resource(%d) of type (oci8 persistent connection)
75 resource(%d) of type (oci8 persistent connection)
H A Dlob_017.phpt2 returning multiple lobs (using persistent connection)
H A Dconnect_scope_try5.phpt81 resource(%d) of type (oci8 persistent connection)
H A Dconnect_scope_try6.phpt81 resource(%d) of type (oci8 persistent connection)
H A Dbug42134.phpt45 // Test collection creation error for persistent connection
H A Dpassword.phpt2 oci_password_change() for non-persistent connections
/PHP-5.3/ext/pdo_sqlite/tests/
H A Dbug43831.phpt2 Bug #43831 ($this gets mangled when extending PDO with persistent connection)
/PHP-5.3/ext/pdo_mysql/tests/
H A Dpdo_mysql_pconnect.phpt73 …printf("[006] Looks like the persistent and the non persistent connection are using the same link?…
/PHP-5.3/ext/dba/libinifile/
H A Dinifile.c83 inifile * inifile_alloc(php_stream *fp, int readonly, int persistent TSRMLS_DC) in inifile_alloc()
94 dba = pemalloc(sizeof(inifile), persistent); in inifile_alloc()
103 void inifile_free(inifile *dba, int persistent) in inifile_free() argument
108 pefree(dba, persistent); in inifile_free()
/PHP-5.3/main/streams/
H A Dstreams.c1368 ptr = *buf = pemalloc_rel_orig(maxlen + 1, persistent); in _php_stream_copy_to_mem()
1380 pefree(*buf, persistent); in _php_stream_copy_to_mem()
1398 ptr = *buf = pemalloc_rel_orig(max_len, persistent); in _php_stream_copy_to_mem()
1411 *buf = perealloc_rel_orig(*buf, len + 1, persistent); in _php_stream_copy_to_mem()
1414 pefree(*buf, persistent); in _php_stream_copy_to_mem()
1947 int persistent = options & STREAM_OPEN_PERSISTENT; local
2012 pefree(stream->orig_path, persistent);
2014 copy_of_path = pestrdup(path, persistent);
2035 pefree(newstream->orig_path, persistent);
2037 newstream->orig_path = pestrdup(path, persistent);
[all …]
/PHP-5.3/ext/odbc/
H A Dphp_odbc_includes.h231 int persistent; member
/PHP-5.3/sapi/cli/tests/
H A D006.phpt28 string(%d) "Extension [ <persistent> extension #%d pcre version <no_version> ] {
/PHP-5.3/ext/mysqlnd/
H A Dmysqlnd.h103 #define mysqlnd_init(persistent) _mysqlnd_init((persistent) TSRMLS_CC) argument
104 PHPAPI MYSQLND * _mysqlnd_init(zend_bool persistent TSRMLS_DC);
/PHP-5.3/sapi/apache_hooks/
H A Dmod_php5.c58 int top, max, persistent; member
115 int sapi_stack_init_ex(sapi_stack *stack, int persistent) in sapi_stack_init_ex() argument
118 stack->persistent = persistent; in sapi_stack_init_ex()
119 stack->elements = (void **) pemalloc(sizeof(void **) * STACK_BLOCK_SIZE, persistent); in sapi_stack_init_ex()
131 (sizeof(void **) * (stack->max += STACK_BLOCK_SIZE)), stack->persistent); in sapi_stack_push()
/PHP-5.3/ext/pdo_mysql/
H A Dmysql_driver.c40 # define pdo_mysql_init(persistent) mysqlnd_init(persistent) argument
42 # define pdo_mysql_init(persistent) mysql_init(NULL) argument

Completed in 86 milliseconds

12345