从PHP连接到Oracle数据库

时间:2015-01-08 22:23:49

标签: php oracle

我有一个我想连接的Oracle数据库。

出于某种原因,当我尝试以下代码时:

<?php
    include "header.php";
    // simply attempt to connect to the database
    /* If you are connecting to the Oracle database, the credentials are as follows: 
     * Username: ********
     * Password: ********
     * Hostname: **********
     * Port: 1521
     * Service name: ***********
    */
    $oracleConnect = true;
    if ($oracleConnect)
    {
        echo 'Attempting connection...<br>';
        $connection = null;
        try
        {
            $connection = oci_connect('user',
                'pass',
                'user@//hostname:1521/dbname');
        }
        catch (Exception $e)
        {
            echo $e->getMessage();
        }
        if (!$connection)
        {
            echo '<p>Something is wrong.</p>';
            $e = oci_error();
            trigger_error(htmlentities($e['message'], ENT_QUOTES), E_USER_ERROR);
        }
        // if the connection has been established
        else
        {
            // tell the user and close it (this is a test)
            echo 'Connection established!!';
            oci_close($connection);
        }
    }
    else
    {
        $connection = new mysqli('host', 'user', 'password', 'database');
        echo ($connection) ? 'Database connection successful!' : 'Could not connect.';
    }
    include "footer.php";
?>

当我尝试上面的代码时,我得到了“尝试连接......”来打印,但没有别的。它应该打印其他东西,无论如何。什么可能出错?

1 个答案:

答案 0 :(得分:0)

我认为问题是连接字符串的user@部分。我不认为有必要,因为oci_connect有一个用户名参数。我可能是错的,我以前从未使用过PHP的oracle,但the docs on oci connections似乎也表示:

  

要使用Easy Connect命名方法,必须将PHP与Oracle 10g或更高版本的客户端库链接。 Oracle 10g的Easy Connect字符串格式为:[//] host_name [:port] [/ service_name]。从Oracle 11g开始,语法为:[//] host_name [:port] [/ service_name] [:server_type] [/ instance_name]。可以通过在数据库服务器计算机上运行Oracle实用程序lsnrctl状态来找到服务名称。

同样oci_connect不会抛出异常,因为我可以判断你的try / catch是无用的,除非你打算在它返回false时自己抛出它。