You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-4Lines changed: 15 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,9 @@
2
2
3
3
Use the PDO_OCI extension to access Oracle Database via PHP Data Objects (PDO) APIs.
4
4
5
-
This repository is for PHP 8.3+ as it [was decided to unbundle](https://wiki.php.net/rfc/unbundle_imap_pspell_oci8) PDO OCI / OCI8 extension from the PHP source code.
5
+
This repository is for PHP 8.3+ as it
6
+
[was decided to unbundle](https://wiki.php.net/rfc/unbundle_imap_pspell_oci8)
7
+
PDO OCI / OCI8 extension from the PHP source code.
6
8
7
9
Documentation is at https://www.php.net/pdo_oci
8
10
@@ -20,15 +22,24 @@ make install
20
22
21
23
```
22
24
23
-
To complete installation, add "extension=pdo_oci.so" or "extension=php_pdo_oci.dll" (Windows) to your php.ini file.
25
+
To complete installation, add "extension=pdo_oci.so" or
26
+
"extension=php_pdo_oci.dll" (Windows) to your php.ini file.
27
+
28
+
Tests
29
+
-----
30
+
31
+
To run the tests, see [tests/README.md](tests/README.md).
24
32
25
33
Additional Requirements
26
34
------------------------
27
35
28
-
The PDO_OCI extension can be linked with Oracle Client libraries from Oracle Database 11.2 or later. These libraries are found in your database
36
+
The PDO_OCI extension can be linked with Oracle Client libraries from Oracle
37
+
Database 11.2 or later. These libraries are found in your database
29
38
installation, or in the free Oracle Instant Client packages from
Install the 'Basic' or 'Basic Light' Instant Client package for running applications with this extension. If building from source, then also install the Instant Client SDK package.
40
+
Install the 'Basic' or 'Basic Light' Instant Client package for running
41
+
applications with this extension. If building from source, then also install
42
+
the Instant Client SDK package.
32
43
33
44
Oracle's standard cross-version connectivity applies. For example, PHP PDO_OCI
34
45
linked with Instant Client 19c can connect to Oracle Database 11.2 onward. See
0 commit comments