Will YII need pdo_oci to connect oracle database ?
Will YII need pdo_oci to connect oracle database ?
Yes if you want to use ActiveRecord, but without AR it will be hard to use other widgets: CListView, CGridView, etc…
You can use oci8 wrapper that provides pdo interface (it is written in plain php and we use it in our projects):
http://www.yiiframework.com/extension/oci8pdo/
http://www.yiiframework.com/extension/phppdo
etc…
Thank you very much