开发者

how i can make connect between php 5 and oracle 10g

开发者 https://www.devze.com 2023-02-24 01:55 出处:网络
how i can make connect between php 5 and ora开发者_运维百科cle 10g and what should i set in php.ini?I\'m not familiar with the database, but Oracle have a very extensive FAQ on PHP and Oracle:

how i can make connect between php 5 and ora开发者_运维百科cle 10g and what should i set in php.ini?


I'm not familiar with the database, but Oracle have a very extensive FAQ on PHP and Oracle:

OCI8 extension: Oracle Call Interface functions

OCI8 is the recommended PHP driver for Oracle. In use at many high profile sites, it provides an easy to use, reliable interface for creating high performance web applications. [...]

PDO_OCI extension: "PHP Data Object" functions

PDO_OCI is the Oracle driver for the PDO data abstraction interface in PHP. While PDO is gaining a little popularity, PDO_OCI isn't as mature as OCI8 and doesn't support some of the features that OCI8 does.[...]

ORA extension: Oracle functions

The obsolete ORA extension is no longer included in PHP distributions. It had limited functionality and was implemented using a now obsolete API to the Oracle database.

So it looks like OCI8 is your best bet. See the PHP manual here.

0

精彩评论

暂无评论...
验证码 换一张
取 消