0

我在从远程服务器上的 Oracle 10g 数据库中检索数据时遇到问题。我在 Linux Debian Web 服务器上使用 PHP,并且 oci8 已启用并正常工作。我只得到一个空白页。代码如下:

<?php
$conn = oci_connect('username','password','//server IP address:1521/servicename');

if (!$conn) {
    $e = oci_error();
    trigger_error(htmlentities($e['message'], ENT_QUOTES), E_USER_ERROR);
}
// Prepare the statement
$stid = oci_parse($conn, 'SELECT * FROM table');
if (!$stid) {
    $e = oci_error($conn);
    //trigger_error(htmlentities($e['message'], ENT_QUOTES), E_USER_ERROR);
}
// Perform the logic of the query
$r = oci_execute($stid);
if (!$r) {
    $e = oci_error($stid);
    trigger_error(htmlentities($e['message'], ENT_QUOTES), E_USER_ERROR);
}
// Fetch the results of the query
print "<table border='1'>\n";
while ($row = oci_fetch_array($stid, OCI_ASSOC+OCI_RETURN_NULLS)) {
    print "<tr>\n";
    foreach ($row as $item) {
        print " <td>" . ($item !== null ? htmlentities($item, ENT_QUOTES) : "&nbsp;") . "</td>\n";
    }
    print "</tr>\n";
}
print "</table>\n";
oci_free_statement($stid);
oci_close($conn);
?>

我不确定如何清楚地定义我想连接的数据库,因为服务器上有多个 Oracle 数据库。

任何帮助将不胜感激。

4

1 回答 1

0

问题现已解决。

添加错误报告后,我遇到了 ocienvnlscreate() failed LD_LIBRARY_PATH 问题。这取决于为 LD_LIBRARY_PATH 设置的路径或instantclient 目录的权限,并且是后者。非常感谢您的回复 Maximus2012。

于 2013-10-14T13:51:00.457 回答