Question

I use Adodb and Active Record for database abstraction. I have started to use Zend Framework, and one of the reasons I like it so much is due to it's "Use at Will" architecture which allows me to continue using Adodb rather than Zend's db_table functionality.

I have taken a look at Zend_DB_Table on paper, but really want to know from someone that has experience in them both, what the differences are and if one is better? Is it worth switching to db_table?

Many thanks in advance.

Was it helpful?

Solution

i dont know Adodb , but one of the nice Features about Zend_Db_Table is that it is used system-wide. You can set an DefaultAdapter in your Bootstrap an all Objects extending Zend_Db_Table_Abstract are able to use the db Adapter.

I realy love Zend_Db_Table, the only problem is the amount of metadata send every requests, but you can handle this with some caching.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top