mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
MFH
This commit is contained in:
parent
fe4e73238a
commit
2bc18c7a00
2 changed files with 34 additions and 6 deletions
20
php.ini-dist
20
php.ini-dist
|
@ -832,7 +832,9 @@ msql.max_persistent = -1
|
||||||
msql.max_links = -1
|
msql.max_links = -1
|
||||||
|
|
||||||
[OCI8]
|
[OCI8]
|
||||||
; enables privileged connections using external credentials (OCI_SYSOPER, OCI_SYSDBA)
|
|
||||||
|
; Connection: Enables privileged connections using external
|
||||||
|
; credentials (OCI_SYSOPER, OCI_SYSDBA)
|
||||||
;oci8.privileged_connect = Off
|
;oci8.privileged_connect = Off
|
||||||
|
|
||||||
; Connection: The maximum number of persistent OCI8 connections per
|
; Connection: The maximum number of persistent OCI8 connections per
|
||||||
|
@ -850,6 +852,18 @@ msql.max_links = -1
|
||||||
; pings completely.
|
; pings completely.
|
||||||
;oci8.ping_interval = 60
|
;oci8.ping_interval = 60
|
||||||
|
|
||||||
|
; Connection: Set this to a user chosen connection class to be used
|
||||||
|
; for all pooled server requests with Oracle 11g Database Resident
|
||||||
|
; Connection Pooling (DRCP). The default name is system generated.
|
||||||
|
; To use DRCP, the database pool must be configured, and the
|
||||||
|
; connection string must also specify to use a pooled server.
|
||||||
|
;oci8.connection_class = MYPHPAPP
|
||||||
|
|
||||||
|
; High Availability: Using 1 lets PHP receive Fast Application
|
||||||
|
; Notification (FAN) events generated when a database node fails. The
|
||||||
|
; database must also be configured to post FAN events.
|
||||||
|
;oci8.events = 0
|
||||||
|
|
||||||
; Tuning: This option enables statement caching, and specifies how
|
; Tuning: This option enables statement caching, and specifies how
|
||||||
; many statements to cache. Using 0 disables statement caching.
|
; many statements to cache. Using 0 disables statement caching.
|
||||||
;oci8.statement_cache_size = 20
|
;oci8.statement_cache_size = 20
|
||||||
|
@ -858,9 +872,9 @@ msql.max_links = -1
|
||||||
; rows that will be fetched automatically after statement execution.
|
; rows that will be fetched automatically after statement execution.
|
||||||
;oci8.default_prefetch = 10
|
;oci8.default_prefetch = 10
|
||||||
|
|
||||||
; Compatibility. Using On means oci_close() will not close
|
; Compatibility. Using 1 means oci_close() will not close
|
||||||
; oci_connect() and oci_new_connect() connections.
|
; oci_connect() and oci_new_connect() connections.
|
||||||
;oci8.old_oci_close_semantics = Off
|
;oci8.old_oci_close_semantics = 0
|
||||||
|
|
||||||
[PostgresSQL]
|
[PostgresSQL]
|
||||||
; Allow or prevent persistent links.
|
; Allow or prevent persistent links.
|
||||||
|
|
|
@ -883,7 +883,9 @@ msql.max_persistent = -1
|
||||||
msql.max_links = -1
|
msql.max_links = -1
|
||||||
|
|
||||||
[OCI8]
|
[OCI8]
|
||||||
; enables privileged connections using external credentials (OCI_SYSOPER, OCI_SYSDBA)
|
|
||||||
|
; Connection: Enables privileged connections using external
|
||||||
|
; credentials (OCI_SYSOPER, OCI_SYSDBA)
|
||||||
;oci8.privileged_connect = Off
|
;oci8.privileged_connect = Off
|
||||||
|
|
||||||
; Connection: The maximum number of persistent OCI8 connections per
|
; Connection: The maximum number of persistent OCI8 connections per
|
||||||
|
@ -901,6 +903,18 @@ msql.max_links = -1
|
||||||
; pings completely.
|
; pings completely.
|
||||||
;oci8.ping_interval = 60
|
;oci8.ping_interval = 60
|
||||||
|
|
||||||
|
; Connection: Set this to a user chosen connection class to be used
|
||||||
|
; for all pooled server requests with Oracle 11g Database Resident
|
||||||
|
; Connection Pooling (DRCP). The default name is system generated.
|
||||||
|
; To use DRCP, the database pool must be configured, and the
|
||||||
|
; connection string must also specify to use a pooled server.
|
||||||
|
;oci8.connection_class = MYPHPAPP
|
||||||
|
|
||||||
|
; High Availability: Using 1 lets PHP receive Fast Application
|
||||||
|
; Notification (FAN) events generated when a database node fails. The
|
||||||
|
; database must also be configured to post FAN events.
|
||||||
|
;oci8.events = 0
|
||||||
|
|
||||||
; Tuning: This option enables statement caching, and specifies how
|
; Tuning: This option enables statement caching, and specifies how
|
||||||
; many statements to cache. Using 0 disables statement caching.
|
; many statements to cache. Using 0 disables statement caching.
|
||||||
;oci8.statement_cache_size = 20
|
;oci8.statement_cache_size = 20
|
||||||
|
@ -909,9 +923,9 @@ msql.max_links = -1
|
||||||
; rows that will be fetched automatically after statement execution.
|
; rows that will be fetched automatically after statement execution.
|
||||||
;oci8.default_prefetch = 10
|
;oci8.default_prefetch = 10
|
||||||
|
|
||||||
; Compatibility. Using On means oci_close() will not close
|
; Compatibility. Using 1 means oci_close() will not close
|
||||||
; oci_connect() and oci_new_connect() connections.
|
; oci_connect() and oci_new_connect() connections.
|
||||||
;oci8.old_oci_close_semantics = Off
|
;oci8.old_oci_close_semantics = 0
|
||||||
|
|
||||||
[PostgresSQL]
|
[PostgresSQL]
|
||||||
; Allow or prevent persistent links.
|
; Allow or prevent persistent links.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue