Re-factoring from Active Record to Data Mapper - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T05:57:53Z http://stackoverflow.com/feeds/question/181388 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/181388/re-factoring-from-active-record-to-data-mapper 1 Re-factoring from Active Record to Data Mapper Owen 2008-10-08T04:46:47Z 2009-01-21T21:35:37Z <p>have you re-factored from an <a href="http://martinfowler.com/eaaCatalog/activeRecord.html" rel="nofollow">Active Record</a> to a <a href="http://martinfowler.com/eaaCatalog/dataMapper.html" rel="nofollow">Data Mapper</a> pattern? what conditions prompted the switch? i'm primarily interested in web based applications, but would like to know the challenges that accompany such a move in any environment.</p> http://stackoverflow.com/questions/181388/re-factoring-from-active-record-to-data-mapper/181402#181402 3 Answer by Mike for Re-factoring from Active Record to Data Mapper Mike 2008-10-08T04:56:13Z 2008-10-08T04:56:13Z <p>I really do like the ActiveRecord pattern for its simplicity. However, I have been moving away from it for larger web apps. I find that as an ActiveRecord based project becomes more complex the ActiveRecord objects become large and laden with too much code. </p> <p>By introducing a Repository pattern (essentially a Data Mapper) the domain model classes become simpler and the data mapping / data access logic is kept separate.</p> <p>Also, it is quite difficult (impossible?) to mock ActiveRecord objects because of their user of static methods.</p> http://stackoverflow.com/questions/181388/re-factoring-from-active-record-to-data-mapper/181477#181477 0 Answer by Hans Sjunnesson for Re-factoring from Active Record to Data Mapper Hans Sjunnesson 2008-10-08T05:42:43Z 2008-10-08T05:42:43Z <p>I wrote an integrated build system sitting on top of PDE-Build using <a href="http://code.whytheluckystiff.net/camping/" rel="nofollow">camping</a>. I initially used ActiveRecord, but I needed non-blocking thread-safe access to the database, so I switched to using Data Mapper.</p> <p>I had my fair share of grief from bugs, but the latest versions seem pretty stable.</p> http://stackoverflow.com/questions/181388/re-factoring-from-active-record-to-data-mapper/467120#467120 0 Answer by Noah Goodrich for Re-factoring from Active Record to Data Mapper Noah Goodrich 2009-01-21T21:35:37Z 2009-01-21T21:35:37Z <p>I use a framework that provides Table Data Gateway and Row Data Gateway as built-in classes that are easy to use because all I have to specify is the primary key (if not just 'id') and the name of the table (if not the same as the name of the class). However, I have recently discovered in the process of refactoring that these patterns begin to degrade the moment that more complex mapping has to occur between the domain and the database. </p> <p>For example, I'm currently refactoring the code for one website to use Data Mapper so that I can use Single Table Inheritance (uses Inheritance Mapping). Basically, anytime the relationship between database and domain becomes more complex than one-to-one, I would strongly consider using Data Mappers.</p>