3
votes
1answer
170 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 …
3
votes
2answers
319 views
Data Mapper + Observer pattern
Hi,
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 the …
3
votes
4answers
640 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'v …
3
votes
2answers
482 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.
…
2
votes
3answers
226 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 < ActiveRec …
2
votes
2answers
199 views
Data mapper pattern and automated updates of other objects
Hi,
I'm building a PHP application using the data mapper pattern to separate my DB from the domain objects. I have a mapper class that returns Site objects based on data from the …
2
votes
3answers
1k views
Data Mapper Pattern
Hi
Up until now i've been using Active records in all my c# database driven applications. But now my application requires my persistance code being split from my business objects. …
1
vote
2answers
60 views
Want to sort by association records count in Datamapper
Lets say I have the following DataMapper resources:
class Post
include DataMapper::Resource
has n, :comments
...
end
class Comment
include DataMapper::Resource
b …
1
vote
3answers
178 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 …
1
vote
1answer
294 views
Complex DataMapper query association
Hello, 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 : …
1
vote
3answers
151 views
How do you talk to a BerkeleyDB database from Ruby or Ruby on Rails?
I have no idea how I would set up a BerkelyDB database in a Ruby or Rails project.
Does anyone have any experience configuring one, that they could talk about?
Maybe using Active …
1
vote
2answers
167 views
Select random data with DataMapper
Im trying to select random datasets with DataMapper, but seems like there is no such function support.
For example, i have set of data:
+-------------------+
| ID | Name | Valu …
1
vote
1answer
131 views
Redirects with Datamapper & Rails
I have a line in my routes.rb to map my Album model as a resource:
map.resources :albums
However, using Datamapper in place of ActiveRecord in Rails, why would this line:
for …
1
vote
4answers
211 views
Any other object-to-object mapping solutions other than AutoMapper in .NET?
I would like to know if the other similar open source solutions in .NET world, especially for 2.0 framework
1
vote
1answer
424 views
CouchDB + Datamapper + View = no ids
I'm using couchdbx v. 0.8.1 and datamapper 0.9.8. I've written a few simple views, copied some from other examples. If I query the views with a browser they return id's. If I query …
