/PHP-8.3/ext/oci8/ |
H A D | php_oci8.h | 52 PHP_MINIT_FUNCTION(oci); 53 PHP_RINIT_FUNCTION(oci); 54 PHP_MSHUTDOWN_FUNCTION(oci); 55 PHP_RSHUTDOWN_FUNCTION(oci); 56 PHP_MINFO_FUNCTION(oci);
|
H A D | config.w32 | 45 if (CHECK_HEADER_ADD_INCLUDE("oci.h", "CFLAGS_OCI8_11G", oci8_11g_inc_paths) && 46 CHECK_LIB("oci.lib", "oci8_11g", oci8_11g_lib_paths)) 80 if (CHECK_HEADER_ADD_INCLUDE("oci.h", "CFLAGS_OCI8_12C", oci8_12c_inc_paths) && 81 CHECK_LIB("oci.lib", "oci8_12c", oci8_12c_lib_paths)) 114 if (CHECK_HEADER_ADD_INCLUDE("oci.h", "CFLAGS_OCI8_19", oci8_19_inc_paths) && 115 CHECK_LIB("oci.lib", "oci8_19", oci8_19_lib_paths))
|
H A D | oci8.c | 62 ZEND_DECLARE_MODULE_GLOBALS(oci) 63 static PHP_GINIT_FUNCTION(oci); 64 static PHP_GSHUTDOWN_FUNCTION(oci); 164 PHP_GINIT(oci), /* globals ctor */ 248 static PHP_GINIT_FUNCTION(oci) in PHP_GINIT_FUNCTION() argument 259 static PHP_GSHUTDOWN_FUNCTION(oci) in PHP_GSHUTDOWN_FUNCTION() argument 277 PHP_MINIT_FUNCTION(oci) in PHP_MINIT_FUNCTION() argument 296 PHP_RINIT_FUNCTION(oci) in PHP_RINIT_FUNCTION() argument 305 PHP_MSHUTDOWN_FUNCTION(oci) in PHP_MSHUTDOWN_FUNCTION() argument 314 PHP_RSHUTDOWN_FUNCTION(oci) in PHP_RSHUTDOWN_FUNCTION() argument [all …]
|
/PHP-8.3/ext/pdo_oci/ |
H A D | config.w32 | 3 ARG_WITH("pdo-oci", "Oracle OCI support for PDO", "no"); 9 PHP_PDO_OCI + "\\oci", 27 …pdo_oci_header = CHECK_HEADER_ADD_INCLUDE("oci.h", "CFLAGS_PDO_OCI", pdo_oci_inc_paths, null, null… 29 if (pdo_oci_header && CHECK_LIB("oci.lib", "pdo_oci", pdo_oci_lib_paths)) { 37 CHECK_FUNC_IN_HEADER('oci.h', 'OCIEnvCreate', pdo_oci_inc_dir, 'CFLAGS_PDO_OCI'); 42 WARNING("pdo-oci not enabled; libraries and headers not found");
|
H A D | config.m4 | 57 PHP_ARG_WITH([pdo-oci], 59 [AS_HELP_STRING([[--with-pdo-oci[=DIR]]], 61 --with-pdo-oci=instantclient,/path/to/instant/client/lib for an Oracle 99 AC_MSG_CHECKING([for oci.h]) 110 if test -f "$OCISDKRPMINC/oci.h" ; then 113 elif test -f "$OCISDKMANINC/oci.h" ; then 116 elif test -f "$OCISDKZIPINC/oci.h" ; then
|
/PHP-8.3/ext/pdo/tests/ |
H A D | bug_43130.phpt | 11 if (!strncasecmp(getenv('PDOTEST_DSN'), 'oci', strlen('oci'))) die('skip not relevant for oci drive…
|
H A D | bug_36798.phpt | 12 if (!strncasecmp(getenv('PDOTEST_DSN'), 'oci', strlen('oci'))){
|
H A D | bug_71885.phpt | 10 if (!strncasecmp(getenv('PDOTEST_DSN'), 'oci', strlen('oci'))) die('skip not relevant for OCI drive…
|
H A D | bug_69356.phpt | 9 if (!strncasecmp(getenv('PDOTEST_DSN'), 'oci', strlen('oci'))) die('skip query not supported'); 31 case 'oci':
|
H A D | pdo_016.phpt | 9 if (!strncasecmp(getenv('PDOTEST_DSN'), 'oci', strlen('oci'))) die('skip not relevant for oci drive…
|
H A D | pdo_016a.phpt | 10 if (!strncasecmp(getenv('PDOTEST_DSN'), 'oci', strlen('oci'))) die('skip not relevant for oci drive…
|
H A D | bug_44861.phpt | 9 $allowed = array('oci', 'pgsql'); 30 if ($db->getAttribute(PDO::ATTR_DRIVER_NAME) == 'oci') {
|
H A D | bug_43139.phpt | 22 if ($db->getAttribute(PDO::ATTR_DRIVER_NAME) == 'oci') {
|
H A D | pdo_038.phpt | 26 case 'oci':
|
H A D | pdo_039.phpt | 35 if ($conn->getAttribute(PDO::ATTR_DRIVER_NAME) === 'oci') {
|
H A D | bug_60665.phpt | 18 case 'oci': $from = 'from dual'; break;
|
H A D | pdo_dsn_containing_credentials.phpt | 11 if (!in_array($driver, array('mssql','sybase','dblib','firebird','mysql','oci')))
|
H A D | gh8626.phpt | 13 if ($db->getAttribute(PDO::ATTR_DRIVER_NAME) == 'oci') {
|
H A D | bug_73234.phpt | 14 if ($db->getAttribute(PDO::ATTR_DRIVER_NAME) == 'oci') {
|
H A D | bug_65946.phpt | 30 case 'oci':
|
H A D | bug_34630.phpt | 19 $is_oci = $driver == 'oci';
|
/PHP-8.3/ext/oci8/tests/ |
H A D | minfo.phpt | 2 Code coverage for PHP_MINFO_FUNCTION(oci)
|
/PHP-8.3/ext/pdo_oci/tests/ |
H A D | pdo_oci_attr_drivername.phpt | 22 string(3) "oci"
|
H A D | common.phpt | 20 $config['ENV']['PDOTEST_DSN'] = 'oci:dbname=localhost/xe;charset=WE8MSWIN1252';
|
H A D | pecl_bug_11345.phpt | 19 $dbh = new PDO('oci:dbname=xxx;charset=yyy', 'abc', 'def');
|