0
votes
1answer
33 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 …
0
votes
2answers
81 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 abou …
0
votes
1answer
39 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, :b …
0
votes
1answer
33 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/environ …
0
votes
1answer
269 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 …
1
vote
2answers
58 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 …
0
votes
0answers
13 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 …
1
vote
4answers
210 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
76 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 …
0
votes
2answers
75 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(S …
0
votes
2answers
233 views
Fowler Data Mapper Object Creation
I have been utilizing the Fowler patterns for domain models with a Data Mapper and have run into some confusion on how to implement the creation portion of CRUD. I can't utilize ex …
0
votes
1answer
71 views
App Engine Jruby DataMapper List Property
Hi! How to use list/array as property in DataMapper on Jruby on Google AppEngine?
1
vote
3answers
174 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 …
0
votes
1answer
137 views
Class model to use in DataMapper
When implementing the DataMapper pattern, should the class model that I implement in the DataMapper package more closely resemble the domain model or the data model?
0
votes
2answers
150 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
…
