1
vote
1answer
19 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 …
3
votes
1answer
33 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 …
0
votes
1answer
23 views
DataMapper has n through Resource DELETE (Remove from association) not working
Hi,
I'm have this two classes
class User
include DataMapper::Resource
property :id, Serial
property :name, String
has n :posts, :through => Resource
end
class Post
include …
0
votes
1answer
20 views
DataMapper has n with conditions
Hello,
By any chance is it possible to create a conditional association with DataMapper?
For example:
I want the User have n Apps just if that user have the attribute :developer => true
something …
0
votes
0answers
11 views
Create Table AS with DataMapper
How do you do the equivalent of this SQL in DataMapper?
CREATE TABLE t AS SELECT * from t2
0
votes
1answer
42 views
Ruby & Datamapper checking if a record exists, and where?
I have a basic Ruby app that I am building with Sinatra, Datamapper and has user authentication using OAuth. When I receive the data back from the Oauth service, I save a record of a new user in an …
0
votes
2answers
99 views
Using Rack::Session::Datamapper
mkristgan's rack_datamapper gem says that it "can be wrapped to be used in a specific environement, i.e. Rack::Session::Datamapper".
Unfortunately, I don't know quite enough about Ruby to accomplish …
0
votes
1answer
52 views
How can I randomize DataMapper collection and convert it to JSON?
Hi,
I'm pulling my hair out trying to build a little random photo JSON feed using DataMapper/Sinatra. Here's what I have so far..
Photo.favorites.to_json(:methods => [:foo, :bar])
So that works …
0
votes
1answer
39 views
undefined method merge
merb datamapper seems to be broken.
$ merb
Loading init file from /home/kristian/workspace/ruby/nightly/config/init.rb
Loading /home/kristian/workspace/ruby/nightly/config/environments/development.rb
…
0
votes
1answer
274 views
Reusing a resultMap for different column names
Is there a way of reusing the same resultMap multiple times in a single query.
For example, suppose I have a "foo" resultMap:
<resultMap id="foo" class="Foo">
<result property="Bar" …
1
vote
2answers
61 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
belongs_to :post
…
0
votes
0answers
14 views
How do I set a Data Mapper object to be accessed in view with Ocular in CodeIgniter?
Previously using Ocular 0.25 I was able to set an object as a view data, that I could access in the view: like:
$b= new book(); $b->get_where("id",5);
$this->ocular->set_view_data("b", $b);
…
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
0
votes
5answers
91 views
Chained aggregate call across association in DataMapper (ruby)
I am working on a simple budget app using Sinatra and DataMapper in Ruby.
I want to get the sum of all transactions across all income accounts within the last 30 days.
Something like …
0
votes
2answers
86 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 …
