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

  1. widely tested,
  2. has good interface (readable method names ,good parameter passing strategy),
  3. speed,
  4. lightweight,
  5. providing cache (e.g integrates with memcache or supports a good caching mechanism),
  6. open-source license,
  7. should have adapters for at least mysql/mysqli ( non PDO based)
  8. if I miss some point ....

Some of the libararies to consider

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

link|improve this question

@DrColossos, please see my edits. I think ORM is tooo much OOPs for php in my case . I only need good abstraction only for reasons/features listed above , thanks – sakhunzai Oct 18 '11 at 13:32
1  
could you please explain us why you think an object oriented DAL cannot be a solution? Don't you think your list of DAL is unmaintained and lacks a lot of things only because they do not use OOP? I don't know any serious programmer that would build a good DAL today and reject OOP. Check Zend_Db_Table (not only Zend_Db). – regilero Oct 23 '11 at 10:12
@regilero I did not say that I don't like OOP's based DAL. You are not getting my question when I said no ORM. ORM is strictly used when we want business objects coupled with database table ..e.g Active Record is an example . I am not interested in business object+ database coupling . I just want a good DAL without ORM ( Object Relational Mapping) part . If you have other lib to suggest you are welcome – sakhunzai Oct 24 '11 at 8:31
3  
I'm just curious here, Why are you excluding PDO ? It's a really good system, and if the roadmap plan are respected, it should become the official default database mecanism in PHP (mysql_ will be deported to PECL, and so will mysqli_) – FMaz008 Oct 27 '11 at 0:56
2  
I don't understand the PDO hating either. Can you supply reasons? – Nev Stokes Oct 27 '11 at 19:40
feedback

6 Answers

If you can do with PHP 5.3, I would highly recommend Doctrine DAL, it's built on top of PDO, so you get the same performance plus a great API.

Update: If Doctrine is not good, you can try MDB2. It has drivers for most of the popular RDBMS, a robust API, great docs and a huge user base:

  • MySQL
  • MySQLi (PHP5 only)
  • PostgreSQL
  • Oracle
  • Frontbase
  • Interbase/Firebird (PHP5 only)
  • MSSQL
  • SQLite
link|improve this answer
please read question properly I explicitly mentioned that PDO is not recommended, and Docttrine is stick to PDO_* rigidly and I am unable to find an adapter for mysql/mysqli for Doctrine. I love to use Doctrine if you could point to mysql/mysqli adapter , thanks – sakhunzai Oct 24 '11 at 12:15
Actually, Doctrine abstracts the PDO API so you can use custom drivers that implement those interfaces. (Connection and Statement). – xmarcos Oct 24 '11 at 14:24
From the Doctrine DBAL Docs: The fact that the Doctrine DBAL abstracts the concrete PDO API away through the use of interfaces that closely resemble the existing PDO API makes it possible to implement custom drivers that may use existing native or self-made APIs. For example, the DBAL ships with a driver for Oracle databases that uses the oci8 extension under the hood. – xmarcos Oct 24 '11 at 14:25
mysqli support is planned, but at the moment it seems there is no adapter. I've updated the answer with an alternative DBAL. – xmarcos Oct 24 '11 at 14:36
2  
@sakhunzai, why don't you want something based on PDO? You should really outline such a reason here, and in your question. – Brad Oct 25 '11 at 20:46
show 11 more comments
feedback

I have good experience with Propel. Doctrine is similar, I heard good things about it but I don't have experience.

link|improve this answer
Propel is an ORM. – xmarcos Oct 28 '11 at 23:38
feedback

What about Zend_Db? The only thing that for caching you need Zend_Cache, and lightweight is vague thing. All other requirements are matched I guess.

link|improve this answer
feedback

I have been using Zend_Db for my web application for the past 1 year. I think, Zend Framework is the best by far.

Zend was started by folks who were the core contributors of PHP.(1)

widely tested

Yes. It is used by thousands of projects and has a active community of developers.

has good interface (readable method names ,good parameter passing strategy)

Yes. All Components can be easily customized to your needs. Every component in Zend is loosely coupled, meaning you can use any component without any dependency on any other component in the framework.

speed

Yes. Zend_Db using PDO, by default.

lightweight

Yes

providing cache (e.g integrates with memcache or supports a good caching mechanism)

Zend has an extensive caching system.

open-source license

Yes

To access a DB table, all you have to do, is create a class for it by setting the table name and its primary key as its fields.

class User extends Zend_Db_Table {

    protected $_name = "users";  //tablename
    protected $_primary = "user_key"; //primary key column

    function addNewUser($name,$age,$email) {
          //Validate input and add Logic to add a new user
          //Methods are available to insert data like $this->insert($data)
          // where $data is an array of column names and values
          // Check links below for documentation
    }
}

This is called a model. In this class, you can create all the methods related to 'User' entity like adding a new user, editing user etc.

In your application code, you can use this as,

$u = new User();
$u->addNewUser('Name','Age','email');

Must Read this - http://framework.zend.com/manual/en/zend.db.table.html

More reference here. Check this relation question for more information

link|improve this answer
thanks for the details.How can I use the Zend_DB (DAL) in my project( of-course without using whole zend framework components) . Could you point me to a link/example – sakhunzai Oct 24 '11 at 8:35
@sakhunzai added more details and links in the answer.. – emaillenin Oct 24 '11 at 11:43
feedback

Doctrine 2.0 is the best one in the market because it is supported by topmost frameworks like Zend framework, Symfony.

It also supports nosql db like mangodb etc...

It has inbuilt cache system which can boost the application.

It is also having Extension support like pagination, query builder etc

Here are some of the bechmarks results of propel and doctrine

                               | Insert | findPk | complex| hydrate|  with  |
                               |--------|--------|--------|--------|--------|
                  PDOTestSuite |    132 |    149 |    112 |    107 |    109 |
             Propel14TestSuite |    953 |    436 |    133 |    270 |    280 |
        Propel15aLa14TestSuite |    926 |    428 |    143 |    264 |    282 |
             Propel15TestSuite |    923 |    558 |    171 |    356 |    385 |
    Propel15WithCacheTestSuite |    932 |    463 |    189 |    342 |    327 |
           Doctrine12TestSuite |   1673 |   2661 |    449 |   1710 |   1832 |
  Doctrine12WithCacheTestSuite |   1903 |   1179 |    550 |    957 |    722 |
            Doctrine2TestSuite |    165 |    426 |    412 |   1048 |   1042 |
   Doctrine2WithCacheTestSuite |    176 |    423 |    148 |    606 |    383 |

These are the key observations for the Doctrine 2 results.

see the last two records how the performance has increased with doctrine 2.0...

this is why zend framework is implementing doctrine as a core module

link|improve this answer
thanks your results seems really promising but you miss my point . Is there any adapter non-pdo available for mysqli for Doctrine ? – sakhunzai Oct 28 '11 at 14:40
feedback

I had some trouble with doctrine DBAL, mostly with the schema/database/table creation, it was buggy and some of documentation was different from actual interfaces and class methods(I did read right version documentation), I had to use raw sql statements for some of those things.
Everything else seemed to be fine, it was small project so I did not use all the features doctrine DBAL provides.

Note: I did it around a year ago with latest stable version of doctrine DBAL and php, maybe all those problems are fixed by now.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.