如何使用 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)
答案 0 :(得分:3)
如何从该配置构建连接字符串?试试这个:
$db=new \DB\SQL('oci:dbname=//localhost:1521/xe','username','password');