うまくいけば、簡単な質問です。
error_reporting(E_ALL);
ini_set('display_errors', '1');
$c = oci_connect('whatmyusrnameis', 'whatmypwdis', 'host');
if ($c) {
echo 'connection';
}
$s = oci_parse($c, 'select * from mantis_bug_table');
oci_execute($s);
次の結果は
警告oci_execute(): ORA-00942: table or view does not exist
ただし、接続によってエラーが発生することはなく、DBテーブルは存在し、空ではありません。
何か案は???ありがとうございました :)。