What are the advantages and disadvantages of both active record and data mapper?

Please be PHP-specific, where the language matters.

Personal experiences are welcome! Ideally with both.

link|improve this question

Is this referring to datamapper the Codeigniter library? Or is there an OO pattern called datamapper? – rgvcorley May 16 at 16:33
1  
@rgvcorley Please refer to stackoverflow.com/questions/804751/… – Flavius May 16 at 16:53
Perfect, thankyou! – rgvcorley May 16 at 17:19
feedback

1 Answer

up vote 51 down vote accepted
+250

Active record:
advantages:
-simplicity
disadvantages:
-responsibility of storage should be a seperate responsability
-static methods are more difficult to test
-persistence often globally accessed
-active record often mistaken to be the domain object itself (example: cakephp)

see also: http://misko.hevery.com/2009/05/05/the-problem-with-active-record/

Data mapper:
advantages:
-clear responsability: storing/retrieving domain objects, no mixing of concerns here
-as a result more easy to inject persistence collaborators
disadvantages:
-can be overkill on small projects that will not grow

disclaimer: I'm strongly biased in favor of the data mapper

link|improve this answer
+1 but I'm still waiting for more answers or additions. Personal experience is welcome and wanted! – Flavius Jan 31 '10 at 0:45
I'm confused. How do static methods come into play here at all? – Billy ONeal Feb 18 '11 at 22:32
@Billy ONeal: I've added a link which explains this problem – koen Feb 19 '11 at 11:30
Ah. What if the active record framework you're using doesn't do that? Propel for example uses a builder object to make the active record instances which you can mock out to your heart's content. – Billy ONeal Feb 19 '11 at 17:12
@Billy ONeal Then it's not a disadvantage anymore. I think it is important to add the point because a lot of frameworks use static methods and a lot of users are not aware of the consequences their choice has. – koen Feb 19 '11 at 17:59
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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