[PHP-DEV] PHP 4.0 Bug #8474 Updated: Cannot login to Oracle database From: derick <email protected>
Date: 12/29/00

ID: 8474
Updated by: derick
Reported By: rainbow178 <email protected>
Old-Status: Open
Status: Feedback
Bug Type: Oracle related
Assigned To:
Comments:

You didn't load/enable the extension. Try to find the ;extension=ora.dll in the php.ini, and remove the ;

Previous Comments:
---------------------------------------------------------------------------

[2000-12-29 08:10:21] rainbow178 <email protected>
<?

$conn = ORA_Logon( "system <email protected>", "manager");

if(!$conn){
        echo"fail to connet!n";
}

$stmt=OCIParse($conn,"select sid, sname from students");
OCIDefineByName($stmt,"sid", &$sid);
OCIDefineByName($stmt,"sname", &$sname);
OCIExecute($stmt);

...

?>
Fatal error: Call to undefined function: ora_logon() in H:ProjectHomepage2logon.php on line 3

---------------------------------------------------------------------------

Full Bug description available at: http://bugs.php.net/?id=8474

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: php-dev-unsubscribe <email protected>
For additional commands, e-mail: php-dev-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>