Skip to content

Commit 62329ef

Browse files
committed
Merge branch 'PHP-7.2'
* PHP-7.2: Fix #76088: ODBC functions are not available by default on Windows
2 parents 1210df6 + b2622ed commit 62329ef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: php.ini-development

+1-1
Original file line numberDiff line numberDiff line change
@@ -877,7 +877,6 @@ default_socket_timeout = 60
877877
;
878878
; Notes for Windows environments :
879879
;
880-
; - ODBC support is built in, so no dll is needed for it.
881880
; - Many DLL files are located in the extensions/ (PHP 4) or ext/ (PHP 5+)
882881
; extension folders as well as the separate PECL DLL download (PHP 5+).
883882
; Be sure to appropriately set the extension_dir directive.
@@ -896,6 +895,7 @@ default_socket_timeout = 60
896895
;extension=exif ; Must be after mbstring as it depends on it
897896
;extension=mysqli
898897
;extension=oci8_12c ; Use with Oracle Database 12c Instant Client
898+
;extension=odbc
899899
;extension=openssl
900900
;extension=pdo_firebird
901901
;extension=pdo_mysql

Diff for: php.ini-production

+1-1
Original file line numberDiff line numberDiff line change
@@ -884,7 +884,6 @@ default_socket_timeout = 60
884884
;
885885
; Notes for Windows environments :
886886
;
887-
; - ODBC support is built in, so no dll is needed for it.
888887
; - Many DLL files are located in the extensions/ (PHP 4) or ext/ (PHP 5+)
889888
; extension folders as well as the separate PECL DLL download (PHP 5+).
890889
; Be sure to appropriately set the extension_dir directive.
@@ -903,6 +902,7 @@ default_socket_timeout = 60
903902
;extension=exif ; Must be after mbstring as it depends on it
904903
;extension=mysqli
905904
;extension=oci8_12c ; Use with Oracle Database 12c Instant Client
905+
;extension=odbc
906906
;extension=openssl
907907
;extension=pdo_firebird
908908
;extension=pdo_mysql

0 commit comments

Comments
 (0)