Oracle SELECT statement not working - ORA-00942

Shyseven

New Member
Hopefully a simple question.\[code\] 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);\[/code\]The following results inWarning \[code\]oci_execute(): ORA-00942: table or view does not exist\[/code\]but the connection doesn't result in any errors and the DB table does exist and it is not empty.Any ideas??? Thank you :).
 
Top