Tagged Questions

2
votes
1answer
50 views
+100

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
2answers
57 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
29 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
0answers
12 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
24 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
1answer
46 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
1answer
59 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
46 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
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); …
0
votes
2answers
96 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 …
0
votes
5answers
98 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
103 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
84 views

App Engine Jruby DataMapper List Property

Hi! How to use list/array as property in DataMapper on Jruby on Google AppEngine?
1
vote
2answers
63 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 …
1
vote
3answers
193 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 …

1 2 3 4 next
15 30 50 per page