Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

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

closed as not constructive by Jack, bmargulies, McGarnagle, C-Pound Guru, 0x7fffffff Oct 8 '12 at 1:12

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

up vote 81 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

share|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
2  
@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 2 more comments

One issue to be kept in mind with this Object-Relational Mapping question is the issue data encapsulation, and how much objects need to be aware of each other's internal properties.

E.g., the principal of encapsulation states that an class should hide it's internals from users of the class, and the Active Record pattern supports this. However, with the Data Mapper pattern, the Data Mapper object itself must be aware of the internal structure. PHP doesn't have "friend classes" (like in C++), which means the properties of the main class (or at least those that need to be mapped to a database) must be public. (But then again, according to Google accessing public member variables is better performance wise than using a lineup of getters and setters although it does allow users of your code to mess things up).

Personally, I've found the Data Mapper pattern to work very well in my own personal projects. My latest work project used Active Record, and performance became a serious issue.

share|improve this answer

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