|
|
For the sake of helping someone else out, here is what happened:
phpSettings.display_startup_errors = 0
phpSettings.display_errors = 0
resources.db.adapter = PDO_OCI
[b]resources.db.params.port = "1521"[/b]
resources.db.isDefaultTableAdapter = true
resources.db.params.charset = "utf8"
resources.db.params.host = "localhost"
resources.db.params.username = "myUser"
resources.db.params.password = "myPass"
resources.db.params.dbname = "XE"
[b]resources.db.params.options.autoQuoteIdentifiers = false[/b]
resources.db.params.options.caseFolding = 2
My initial problem was solved by simply getting the port number correct. Also, Oracle is a bit finicky with quotes, and so the autoQuoteIdentifiers param was needed.
All in all, Zend Framework documentation fail (not to mention community support fail). But I got it on my own eventually. Will be pushing for .NET at my work from now on...
|