如何在Oracle数据库中使用Fat Free框架

时间:2015-08-07 06:14:50

标签: php oracle11g fat-free-framework

如何使用 Fat Free Framework 连接到oracle(11g express edition)数据库? 目前我正在使用此配置(config.ini):

db_dns=oci:host=localhost;port=1521;dbname=
db_name=xe
db_user=username
db_pass=password

但它不起作用。错误说:

Internal Server Error.
could not find driver

但我已经安装了驱动程序(oci8)

1 个答案:

答案 0 :(得分:3)

如何从该配置构建连接字符串?试试这个:

$db=new \DB\SQL('oci:dbname=//localhost:1521/xe','username','password');

来自http://www.php.net/manual/en/ref.pdo-oci.connection.php