0
如何從名爲emp
的表中獲取EMPNO
和ENAME
列?如何使用PHP從Oracle數據庫中選擇數據
這是我的連接字符串:
if ($c = oci_connect("tharindu", "123456", "localhost/XE")) {
echo "Successfully connected to Oracle.";
oci_close($c);
} else {
$err = oci_error();
echo "Oracle Connect Error " . $err['text'];
}
我有錯誤消息:已成功連接到Oracle。 警告:oci_parse()期望參數1是資源,null在第11行的C:\ wamp \ www \ temp \ example2 \ x.php中給出 警告:oci_execute()期望參數1爲資源, C:\ wamp \ www \ temp \ example2 \ x.php on line 13 警告:oci_fetch_array()期望參數1是資源,null在C:\ wamp \ www \ temp \ example2 \ x.php中給出的第15行 – Tharindu 2011-05-11 04:04:25
是否仍然出錯? – Rasel 2011-05-11 04:50:16