Tagged Questions
Architectural pattern for separating application logic from storage.
14
votes
1answer
440 views
Repository and Data Mapper pattern
After a lots of read about Repository and Data Mapper I decided to implement those patterns in a test project. Since I'm new to these I'd like to get your views about how did I implement those in a ...
14
votes
6answers
2k views
When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying
A colleague of mine is currently designing SQL queries like the one below to produce reports, which are displayed in excel files through an external data query.
At present, only reporting processes on ...
13
votes
2answers
3k views
DataMapper vs ActiveRecord in Rails 3
I am curious on what you guys think about DataMapper and what benefits does it bring over the new and improved ActiveRecord in Rails 3.
I appreciate your opinions.
12
votes
3answers
8k views
Data Mapper Pattern
Up until now I've been using Active records in all my c# database driven applications. But now my application requires my persistence code being split from my business objects. I have read a lot of ...
7
votes
2answers
231 views
Why does active record pattern not work with rich domain models?
I'm reading the architectural patterns chapter of POEAA, and Fowler says that "As the domain logic gets more complicated and you begin moving toward a rich Domain Model (116), the simple approach of ...
6
votes
1answer
2k views
Spork and cache_classes problem with rspec, factory_girl and datamapper
I've got a problem with Spork test server.
If I set config.cache_classes = false in config/environments/test.rb then specs start to rasie errors.
Failure/Error: task = Factory(:something, :foo ...
6
votes
3answers
714 views
Using the Data Mapper Pattern, Should the Entities (Domain Objects) know about the Mapper?
I'm working with Doctrine2 for the first time, but I think this question is generic enough to not be dependent on a specific ORM.
Should the entities in a Data Mapper pattern be aware - and use - ...
6
votes
2answers
126 views
Data Mapper API - unsure about organisation
Let's say we have "User" and a "Hotel" model classes. I'd use a User_Mapper and Hotel_Mapper to load/save/delete etc. I want to then have the user be able to mark their "favourite" hotels. In the ...
6
votes
1answer
251 views
Migrate existing ROR app to GAE
I have managed to run a basic rails app1 on App Engine using:
http://gist.github.com/268192
So, on my basic app2, I install CE, which works fine on local machine.
(communityengine.org)
But, when I ...
6
votes
5answers
665 views
What does a Data Mapper typically look like?
I have a table called Cat, and an PHP class called Cat. Now I want to make a CatDataMapper class, so that Cat extends CatDataMapper.
I want that Data Mapper class to provide basic functionality for ...
6
votes
2answers
920 views
Data Mapper + Observer pattern
I'm building an app in PHP and I'm using the data mapper pattern for my DB access. I was considering using the Observer pattern to have all my mappers observe the entities they create, so that they ...
6
votes
2answers
1k views
How does the ActiveRecord pattern differ from the Domain Object or Data Mapper pattern?
I was looking at DataMapper, which appeared at first glance to use the ActiveRecord ORM pattern. Other people said that it uses the DataMapper and/or the Domain Object pattern.
What is the ...
5
votes
2answers
793 views
Rails 3: ActiveRecord vs. DataMapper (vs. ???) for Legacy MySQL Databases
Which ORM is best to use with a new Rails 3 app against a legacy MySQL 5.1 database? I do not expect to ever run a migration against this database (though the schema may change from time to time), but ...
5
votes
2answers
267 views
Is Data Mapper a more modern trend than Active Record
I've come across a couple of ORMs that recently announced they are planning to move their implementation from Active Record to Data Mapper. My knowledge of this subject is very limited. So a question ...
5
votes
1answer
178 views
Is there active development going on IBatis.Net DataMapper?
Is there active development going on IBatis.Net DataMapper? Do they have version for .Net 3.5. I saw lots of activity on iBatis Java DataMapper as they are planning to release iBatis3 with annotation ...
5
votes
3answers
1k views
Master / Slave switch in the Zend Framework application layer
I am writing an application which requires the Master/Slave switch to happen inside the application layer. As it is right now, I instantiate a Zend_Db_Table object on creation of the mapper, and then ...
5
votes
1answer
2k views
Automatic logging of DataMapper queries
I am working on a simple app in Sinatra with DataMapper. I want to see the queries that DM is created for my various chained finders, etc.
I have tried:
DataMapper::Logger.new(STDOUT, :debug)
in ...
5
votes
2answers
2k views
error happens when I try “all” method in datamapper
When I try to do this in Sinatra,
class Comment
include DataMapper::Resource
property :id, Serial
property :body, Text
property :created_at, DateTime
end
get '/show' do
...
5
votes
1answer
752 views
Adjustments needed in a Rails app to use Datamapper instead of ActiveRecord
I am trying to use Datamapper in a Rails app as an alternative to ActiveRecord.
I've followed the various setup instructions and have Datamapper working in my app.
But one of the first things I ...
4
votes
2answers
593 views
Use DataMapper instead of ActiveRecord [closed]
DataMapper idea is definitely better then ActiveRecord. It has one API for a variety of data stores, including RDBMS and NoSQL stores.
DataMapper is much smarter then ActiveRecord. It has "Strategic ...
4
votes
1answer
429 views
Beginning with Datamapper, Association question
I'm just diving into Datamapper (and Sinatra) and have a question about associations. Below are some models I have. This is what I want to implemented. I'm having an issue with Workoutitems and ...
4
votes
1answer
1k views
Ruby Datamapper table inheritance with associations
I started learning Datamapper and what I liked about it was that I can write my models with real inheritance.
Now I wonder, if it is possible to be more advanced about this:
class Event
include ...
4
votes
5answers
1k views
What is the best MVC, Doctrine2, Datamapper practice?
I am looking into using Doctrine2 with my Zend Framework setup. I really like the datamapper pattern, mainly because it seperates my domain models with my database.
My question is what is the best ...
4
votes
5answers
1k views
Why does DataMapper use mixins vs inheritance?
So I'm just curious about this:
DataMapper uses a mixin for its Models
class Post
include DataMapper::Resource
While active-record uses inheritance
class Post < ActiveRecord::Base
Does ...
4
votes
2answers
2k views
Complex DataMapper query association
im a beginner with DataMapper ORM, so i have question about complex querying.
First, here is simplified data objects:
class User
property :id, Serial
property :login, String
has n, ...
3
votes
3answers
69 views
Are there any Ruby ORMs which use cursors or smart fetch?
I'm looking for an Ruby ORM to replace ActiveRecord. I've been looking at Sequel and DataMapper. They look pretty good however no of them seems to do the basic : not loading everything in memory when ...
3
votes
1answer
68 views
PHP Mapper Pattern, many to many relationships
When using the mapper pattern, what is the best practice for defining classes for many to many relationships.
For example, let's say we have tables for Products and Categories and Product_Categories
...
3
votes
3answers
105 views
How to stub DataMapper association with RSpec2?
I'm trying to write some specs and want to stub out the calls to the database so I don't rely on an actual filled database to get the tests running.
Now I don't really know how to stub the calls ...
3
votes
2answers
406 views
ruby resque without loading rails environment
I have a resque worker which works great but is just too slow. The main reason for this is I'm using activerecord and having to load the entire environment which takes at least 10-20 seconds just to ...
3
votes
1answer
316 views
Using an aliased field in a CodeIgniter DataMapper ORM many-to-one relationship
I'm currently modeling out a website using the DataMapper ORM for CodeIgniter. At the moment, I have a users table that has all the standard user information, including an id, and a form_data table ...
3
votes
2answers
701 views
database.yml &references not working
We just upgraded our virtual machines to what I thought was an identical ruby configuration (via RVM... Ruby 1.9.2, Rails 3.0.7, DataMapper 1.1.0). The biggest difference was that we went from MySQL ...
3
votes
1answer
242 views
How can I better optimize many-to-many association queries with DataMapper?
DataMapper appears to be generating grossly sub-optimal queries for associations that use a join table. What can I do to improve the performance of these queries? Note that it generates the same ...
3
votes
1answer
195 views
Alternative serialization for DataMapper objects in Rails
I'm working on on a caching layer in my Rails app and I'm having trouble caching original DataMapper objects. They seem to have a lot of stuff attached that make marshaling fail (I get an error about ...
3
votes
2answers
189 views
Determine responsibility of saving settings (controller, services and mappers)
EDIT:
Because I was to late with awarding the initial bounty of 300 to @arcain I'm reopening. And awarding the additional 150 to @arcain. Unless of course somebody provides even a better answer. :)
...
3
votes
2answers
751 views
Codeigniter HMVC and datamapper compatibility
I am new to Codeigniter and I am thinking about the use of this framework in my new project.
I am going to need these two extensions. Before digging into too deep, I wonder if anyone already has ...
3
votes
2answers
949 views
Rails3: Take controll over generated JSON (to_json with datamapper ORM)
From my Rails 3 app i want a JSON like this:
{count:10,
pictures:[
{id:1},
... ] }
I tried
render( :json => { :count => 10, :pictures => ...
3
votes
2answers
215 views
Zend Framework and Preventing Fat Controllers
Avoiding Fat Controller
So I'm using Zend Framework and I have a question involving preventing fat controllers with one of my actions. Basically I am normalizing a CSV file into my database.
This ...
3
votes
2answers
166 views
DataMapper import primary key
I'm running an import script which imports a CSV dump of a database into a local sqlite database using DataMapper.
My models look like this:
class Staff
include DataMapper::Resource
...
3
votes
2answers
429 views
how do I migrate Datamapper on appengine
I've changed my model from
class Place
include DataMapper::Resource
has n, :trails
property :id, Serial
property :name, String, :length => 140
property :tag, ...
3
votes
3answers
493 views
Data Mapper and Relationships: Implementation strategies?
I've almost finished my Data Mapper, but now I'm at the point where it comes to relationships.
I will try to illustrate my ideas here. I wasn't able to find good articles / informations on this ...
3
votes
0answers
445 views
Strategic Eager Loading for many-to-many relations in Datamapper?
I'm using DataMapper, an open source ORM for ruby, and I have in itch I would like to scratch. At the moment, DataMapper can use Strategic Eager Loading(SEL) for one-to-many relationships, but not ...
3
votes
4answers
2k views
How to extend this simple DataMapper?
Can someone please derive a concrete example from the following:
http://www.urdalen.com/blog/?p=210
..that shows how to deal with one-to-many and many-to-many relationships?
I've emailed the author ...
2
votes
1answer
42 views
Many useless queries done by DataMapper
I have a problem with DataMapper (I'm using it with Sinatra)
I have a very basic app with 3 models.
Here's the code.
class Level
include DataMapper::Resource
property :id, Serial
property ...
2
votes
1answer
87 views
Has anyone created a web-app mix-in for Sinatra and Datamapper with Ruby?
I got sick of rewriting login forms and user account management pages with the usual use-cases of registering a new account, changing password, changing e-mail, w/ associated e-mails. (This is for ...
2
votes
1answer
92 views
.NET Native GUID conversion
I have an external database that is feeding information to me. One saves their data as native GUID format and my other data source supplies standard .NET GUID format string.
Is there a tidy way to ...
2
votes
1answer
53 views
How to list possible Enum symbols in sinatra view?
Say I have a model like so:
class Animal
include DataMapper::Resource
property :id, Serial
property :type, Enum[ :cat, :bat, :rabbit, :zebra]
end
Assuming there is a route pointing to ...
2
votes
2answers
32 views
DataMapper associates that depend on two columns
I have a table of products with attributes like SKU, Name, etc.
It seems like I need to have separate tables for each category of product due to the large variety of features depending on the ...
2
votes
1answer
86 views
Can't find mapping model for migration, where does the mapping model have to go?
I have a project that uses CoreData on iOS and we have gone through numerous model updates with the lightweight migration technique and the NSInferMappingModelAutomaticallyOption set to YES. This ...
2
votes
1answer
146 views
Zend framework data mappers + paginator
I mostly use zend_db_table with a paginator, the problem is that it will return zend_db_rows instead the domain objects from my datamapper.
Let's say :
class Content_Model_ArticleMapper {
/*
* ...
2
votes
3answers
831 views
LoadError: no such file to load — dm-sqlite-adapter
I'm starting my first Sinatra App and I'm trying to use DataMapper. Everything is in the very early stages, as I can't get it to actually create the DB. I get "LoadError: no such file to load -- ...