statement_cache_size 1060 ext/oci8/oci8.c 	STD_PHP_INI_ENTRY(	"oci8.statement_cache_size",	"20",	PHP_INI_SYSTEM,	ONUPDATELONGFUNC,	statement_cache_size,	zend_oci_globals,	oci_globals)
statement_cache_size 3102 ext/oci8/oci8.c 	ub4 statement_cache_size = 0;
statement_cache_size 3104 ext/oci8/oci8.c 	if (OCI_G(statement_cache_size) > 0) {
statement_cache_size 3105 ext/oci8/oci8.c 		if (OCI_G(statement_cache_size) > SB4MAXVAL)
statement_cache_size 3106 ext/oci8/oci8.c 			statement_cache_size = (ub4) SB4MAXVAL;
statement_cache_size 3108 ext/oci8/oci8.c 			statement_cache_size = (ub4) OCI_G(statement_cache_size);
statement_cache_size 3274 ext/oci8/oci8.c 	PHP_OCI_CALL_RETURN(OCI_G(errcode), OCIAttrSet, ((dvoid *) connection->svc, (ub4) OCI_HTYPE_SVCCTX, (ub4 *) &statement_cache_size, 0, (ub4) OCI_ATTR_STMTCACHESIZE, OCI_G(err)));
statement_cache_size 3297 ext/oci8/oci8.c 	ub4 statement_cache_size = 0;
statement_cache_size 3299 ext/oci8/oci8.c 	if (OCI_G(statement_cache_size) > 0) {
statement_cache_size 3300 ext/oci8/oci8.c 		if (OCI_G(statement_cache_size) > SB4MAXVAL)
statement_cache_size 3301 ext/oci8/oci8.c 			statement_cache_size = (ub4) SB4MAXVAL;
statement_cache_size 3303 ext/oci8/oci8.c 			statement_cache_size = (ub4) OCI_G(statement_cache_size);
statement_cache_size 3440 ext/oci8/oci8.c 	PHP_OCI_CALL_RETURN(OCI_G(errcode), OCIAttrSet, ((dvoid *) connection->svc, (ub4) OCI_HTYPE_SVCCTX, (ub4 *) &statement_cache_size, 0, (ub4) OCI_ATTR_STMTCACHESIZE, OCI_G(err)));
statement_cache_size  520 ext/oci8/php_oci8_int.h 	zend_long		 statement_cache_size;			/* statement cache size. used with 9i+ clients only*/