What is the best PHP DAL(data abstraction layer) so far developed under any open source project which we could re-use with good faith.
I am finding it hard to choose a DAL for my application that sufficiently supports abstraction to most common databases systems (mysql, postgresql, mssql, oracle ...) and is
- widely tested,
- has good interface (readable method names ,good parameter passing strategy),
- speed,
- lightweight,
- providing cache (e.g integrates with memcache or supports a good caching mechanism),
- open-source license,
- should have adapters for at least mysql/mysqli ( non PDO based)
- if I miss some point ....
Some of the libararies to consider
- PHPBB DAL http://wiki.phpbb.com/Database_Abstraction_Layer
- Joomla DAL http://api.joomla.org/Joomla-Framework/Database/JDatabase.html
- ADOdb http://phplens.com/adodb/
- Zend_db
- Doctrine ( downside only supports PDO_*)
- any other DAL used/developed under any open-source project/branch
Dont' even consider :
- PDO and likes ...
- ALL ORMs(however , doctrine seems to have a separate DAL besides ORM )
I know this answer requires good knowledge/experience so I'll set up 100 bounty for the right answer .
EDIT : Please don't consider ORM