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.
|
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.
|
Active record: see also: http://misko.hevery.com/2009/05/05/the-problem-with-active-record/ Data mapper: disclaimer: I'm strongly biased in favor of the data mapper |
|||||||||||||
|
|
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. |
|||
|
|