[PHP-users 15503] PHP3+Oracle9i

Takuro Suzuki etsuzuki @ esg.hitachi-hec.co.jp
2003年 5月 27日 (火) 19:12:50 JST


PHP-3.0.18-i18n-ja-2とOracle-9iで、ora_logon()で
オラクルに接続できません。
ora_error()の出力は、次の通り。
Error while trying to retrive text for error ORA-01019

PHP3は、オラクル9iに対応できないのでしょうか。

テストしているスクリプト
<html>
<title>a.php3</title>
<body>
<?php
        $conn = ora_logon("NKG @ NKG", "NKG");
        if($conn == false) {
                print("NG  LOGON<br>\n");

                $str   = ora_error();
                $wkstr = "ora_error     : " . $str . "<br>";
                printf("%s\n", $wkstr);
        } else {
                print("OK  LOGON<br>\n");

                $rtc = ora_logoff($conn);
        }
?>
</body>
</html>



configure オプション
CFLAGS="-fPIC -DEAPI" ./configure --prefix=/usr \
        --with-apxs=/usr/sbin/apxs \
        --with-config-file-path=/etc/httpd \
        --enable-safe-mode \
        --with-exec-dir=/usr/bin \
        --disable-debug \
        --with-zlib \
        --without-gd \
        --enable-debugger \
        --enable-magic-quotes \
        --enable-i18n \
        --enable-mbregex \
        --enable-track-vars \
        --with-oracle=/oracle/app/oracle/product/9.2.0


PHP-users メーリングリストの案内