I would like to use an ORM but unfortunately there is no stable PDO for our database (Oracle). The PHP page states that the PDO_OCI extension is “EXPERIMENTAL” and warns against using it.
It seems that both Doctrine and Propel require PDO. What do other Oracle/PHP shops use for ORM in production?
Doctrine 2 supports OCI8 out of the box.
For Doctrine 1.2 you will have to implement your own connection class using the OCI8 extension (the only one actively supported by Oracle). Chances are, you will find a custom class at GitHub or by googling for it.
As for Propel, there is an entry in the Propel Newgroups asking for it:
and