I try to use oci functions instead of ora fonction for an oracle8.1.7 database.
As we use queries with tables from multiple owners, we used to connect to the database by the OS authentification way (OPS$). Using the ora fonctions was something like :
$db = Ora_pLogon("/@dbsid","");
But we want to use the oci fonctions and I can't get the right syntax to do the same thing. I tried the following examples but it didn't work :
ociPlogon("/","","dbsid");
ociPlogon("","/","dbsid");
ociPlogon("/@dbsid","","");
...
Dos anybody have any idea about this ?
Thank you for your help.