views:

33

answers:

1

I am going to use Zend framework to access data from an oracle database. Previously I have the class I built to interact with the database (outside of framework), those are all procedural and function calls in the database (not SELECT statements), I have to bind variables and then execute them. I am looking to use Zend_db component to access oci8 adapter. Anyone knows how to do that or can point me to a tutorial, that will be helpful.

Thanks

+1  A: 

A quick Google search yielded this PDF and this tutorial from Oracle. The Oracle tutorial shows how to bind variables and execute stored procedures. Perhaps those have what you need.

DCookie