Salut,
Je dois developper une appli PHP(5) qui dialogue avec une bdd oracle.
Les deux serveurs : apache comme oracle sont sur la meme machine car j'utilise le serveur apache d'oracle 9.
Voici les extraits du script, et l'erreur associee
Code :
- $bdd="(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=$bdd_host)(PORT=$bdd_port)))(CONNECT_DATA=(SID=$bdd_SID)(SERVER=DEDICATED)))";
- $connexion=OCILogOn($bdd_user,$bdd_pass,$bdd);
- $stmt=ociparse($connexion,"SELECT * FROM Personne" );
- ociexecute($stmt);
- while(oci_fetch($stmt)){
- echo oci_result($stmt,1);
- }
|
Erreur :
Warning: ociexecute() : OCIStmtExecute : ORA-00942 : Table ou vue inexistante in c:\monsite\mapage.php
Pourtant ma table existe bien
Quelqu'un peut il m'aider? :-)
Merci,
max