> I´m triyng to use that, but I´m noting realize how to estabilish a
conection
> with oracle.
>
> I´m getting the folowing error:
>
> Fatal error: Call to undefined function: ora_plogon() in
> e:\inetpub\wwwroot\hosted\EnsinoNet\php\adodb\drivers\adodb-oracle.inc.php
> on line 105
>
>
> I´m triyng to conect with oracle with the folowing command:
>
> $conn =& ADONewConnection('oracle');

with that, adodb try to use the 'oracle' php extension (ora_logon functions
and friends), which is only for oracle 7. In your case (oracle 8), you have
to use the 'oci8' extension, to let adodb use the php ocilogon functions and
friends.
So, try :
 $conn =& ADONewConnection('oci8');
note : you would also have to compile php with --oci, and the oracle client
is also needed.

Regards,
Philippe




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to