active questions tagged datamapper - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T17:54:19Zhttp://stackoverflow.com/feeds/tag/datamapperhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1829161/ruby-datamapper-table-inheritance-with-associations2Ruby Datamapper table inheritance with associationsDebilski2009-12-01T21:47:49Z2009-12-03T22:11:33Z
<p>I started learning <a href="http://datamapper.org/" rel="nofollow">Datamapper</a> and what I liked about it was that I can write my models with real inheritance.</p>
<p>Now I wonder, if it is possible to be more advanced about this:</p>
<pre><code>class Event
include DataMapper::Resource
property :id, Serial
property :begin, DateTime
property :type, Discriminator
end
class Talk<Event
property :title, String
belongs_to :meeting
end
class Meeting<Event
has n, :talks
end
</code></pre>
<p>That code fails to create the <code>:title</code> column for the <code>Talk</code> and obviously, the discriminator column is of little value here, because from a database view, there should be separate tables for both <code>Talk</code> and <code>Meeting</code>.</p>
<p>So, in the end, I want <code>Talk</code> and <code>Meeting</code> to share the same properties as defined in <code>Event</code> but with possible additional properties and with a 0..1:n relation (A meeting can have several talks but there are talks without a meeting.) Is there a way to accomplish this without either repeating the column definitions and/or abandoning inheritance?</p>
<p><strong>Edit</strong></p>
<p>To give another example: The part that I like about the inheritance thing is, that general <code>Event</code>s can be queried separately. So, when I want to know, if there is something at a certain <code>:begin</code> date, I don’t need to look in two or more tables but could just query the <code>Event</code> table. In a way, the following structure could fit my needs.</p>
<pre><code>class Event
include DataMapper::Resource
property :id, Serial
property :begin, DateTime
end
class Talk
include DataMapper::Resource
property :id, Serial
property :title, String
belongs_to :event
belongs_to :meeting
end
class Meeting
include DataMapper::Resource
property :id, Serial
belongs_to :event
has n, :talks
end
</code></pre>
<p>However, in order to use this, I would need to manually create an <code>Event</code> every time, I want to create or edit a <code>Talk</code>. That is, I can’t do <code>talk.begin</code> or <code>Talk.create(:begin => Time.now)</code>. Is there a way around this without patching all functions and merging the properties? I don’t want to be reminded of the underlying structure when using the model.</p>
http://stackoverflow.com/questions/1826798/master-slave-switch-in-the-zend-framework-application-layer4Master / Slave switch in the Zend Framework application layerPro7772009-12-01T15:08:04Z2009-12-03T20:31:40Z
<p>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 setDefaultAdapter to the slave. </p>
<p>Now inside of the base mapper classe, I have the following method:</p>
<pre><code>public function useWriteAdapter()
{
if(Zend_Db_Table_Abstract::getDefaultAdapter() != $this->_writeDb)
{
Zend_Db_Table_Abstract::setDefaultAdapter($this->_writeDb);
$this->_tableGateway = new Zend_Db_Table($this->_tableName);
}
}
</code></pre>
<p>I need a sanity check on this. I don't think the overhead is too much, I just suspect there must be a better way.</p>
http://stackoverflow.com/questions/1815686/datamapper-has-n-through-resource-delete-remove-from-association-not-working0DataMapper has n through Resource DELETE (Remove from association) not workingludicco2009-11-29T14:35:51Z2009-12-03T03:23:33Z
<p>Hi,</p>
<p>I'm have this two classes</p>
<pre><code>class User
include DataMapper::Resource
property :id, Serial
property :name, String
has n :posts, :through => Resource
end
class Post
include DataMapper::Resource
property :id, Serial
property :title, String
property :body, Text
has n :users, :through => Resource
end
</code></pre>
<p>So once I have a new post like:</p>
<pre><code>Post.new(:title => "Hello World", :body = "Hi there").save
</code></pre>
<p>I'm having serious problems to add and remove from the association, like:</p>
<pre><code>User.first.posts << Post.first #why do I have to save this as oppose from AR?
(User.first.posts << Post.first).save #this just works if saving the insertion later
</code></pre>
<p>and how should I remove a post from that association?
I'm using the following but definitely its not working:</p>
<pre><code>User.first.posts.delete(Post.first) #returns the Post.first, but nothing happens
User.first.posts.delete(Post.first).save #returns true, but nothing happpens
User.first.posts.delete(Post.first).destroy #destroy the Post.first, not the association
</code></pre>
<p>So I really don't know how to delete this from the BoltUser Array,</p>
<p>Any Help please?</p>
<p>Thank you very much :)</p>
<p><hr></p>
<p>UPDATE:
I Managed to do it by doing:</p>
<pre><code>#to add
user_posts = User.first.posts
user_posts << Bolt.first
user_posts.save
#to remove
user_posts.delete(Bolt.first)
user_posts.save
</code></pre>
<p>I think the only way to do it is working with the instance actions, do your changes on that instance and after you finished, just save it.
It's kind of different from AR but, its cool though.</p>
<p>I'm not sure if its possible to do it with any other method, but this is fine for now :)</p>
http://stackoverflow.com/questions/1793863/datamapper-has-n-with-conditions0DataMapper has n with conditionsludicco2009-11-25T00:11:00Z2009-11-30T06:54:59Z
<p>Hello,</p>
<p>By any chance is it possible to create a conditional association with DataMapper?</p>
<p>For example:</p>
<p>I want the User have n Apps just if that user have the attribute <code>:developer => true</code></p>
<p>something like this:</p>
<pre><code>class User
include DataMapper::Resource
property :id, Serial
property :name, String, :nullable => false
property :screen_name, String, :nullable => false, :unique => true
property :email, String, :nullable => false, :unique => true, :format => :email_address
property :password, BCryptHash, :nullable => false
property :developer, Boolean, :default => false
#The user just gets apps if developer
has n :apps #,:conditions => "developer = 't'"
end
class App
include DataMapper::Resource
property :id, Serial
property :name, String, :nullable => false
belongs_to :user
end
</code></pre>
<p>I know that this would be possible by creating a subclass from User as a Developer::User and in that class, use the <code>has n</code>, but I really would like to know if its possible to make it directly on the association declaration. </p>
<p>Another way I also managed to do when using ARn was to extend the association and rewriting the methods for each action.</p>
<p>So on the extension module I could have something like this:</p>
<pre><code>module PreventDeveloperActions
def new
if proxy_owner.developer?
super
else
raise NoMethodError, "Only Developers can create new applications"
end
end
# and so on for all the actions ...
end
</code></pre>
<p>But again, I really would like to avoid the use of this solutions if possible, but just if it's possible to perform a quick and direct method easily with DataMapper :)</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1803115/create-table-as-with-datamapper0Create Table AS with DataMappervigilant2009-11-26T11:21:02Z2009-11-26T11:21:02Z
<p>How do you do the equivalent of this SQL in DataMapper?</p>
<pre><code>CREATE TABLE t AS SELECT * from t2
</code></pre>
http://stackoverflow.com/questions/1752936/ruby-datamapper-checking-if-a-record-exists-and-where0Ruby & Datamapper checking if a record exists, and where?kylemac2009-11-18T00:54:20Z2009-11-18T10:15:30Z
<p>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 sqlite3 db. </p>
<p>What I don't know how to do is how to go about verifying the user record doesn't already exist on the user database table. I can use the user's unique id (uid) to cross check whether the uid is already stored, but I am just unsure where to do this. </p>
<p>I have 2 classes and a <strong>/callback</strong> route. The <strong>User</strong> class is the db model, and an <strong>Authentication</strong> class has assorted methods for connecting to the OAuth, and the <strong>/callback</strong> route which will have the Authentication.save method being called. </p>
<p>Should I be checking for an existing record within the <strong>Authentication.save</strong> method and return a boolean or something else? Create a new method in <strong>Authentication</strong> that would be like Authentication.exists? (and what would that look like?) Or should I be checking within the <strong>/callback</strong> route?</p>
<p>I apologize if this wasn't 100% clear, I am having a difficult time describing my issue and am an absolute Ruby beginner...</p>
http://stackoverflow.com/questions/1584449/using-racksessiondatamapper0Using Rack::Session::Datamapperarbales2009-10-18T09:22:15Z2009-11-16T08:35:58Z
<p>mkristgan's <a href="http://github.com/mkristian/rack%5Fdatamapper" rel="nofollow">rack_datamapper</a> gem says that it "can be wrapped to be used in a specific environement, i.e. Rack::Session::Datamapper". </p>
<p>Unfortunately, I don't know quite enough about Ruby to accomplish this task yet –Modules/Classes in Ruby are still above my head (coming from PHP). </p>
<p>Can anyone offer assistance with using rack_datamapper to implement Rack::Session::Datamapper? </p>
<p><strong>You probably don't want to do this anyway.</strong></p>
<p>The answer below is great, but upon closer consideration, I realized I shouldn't do it anyway. Instead, I'm placing the user_id, ip and first name (for convenience) in a cookie and protecting it.</p>
http://stackoverflow.com/questions/1705973/how-can-i-randomize-datamapper-collection-and-convert-it-to-json0How can I randomize DataMapper collection and convert it to JSON?Zeke2009-11-10T06:20:30Z2009-11-10T19:29:37Z
<p>Hi,</p>
<p>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..</p>
<pre><code>Photo.favorites.to_json(:methods => [:foo, :bar])
</code></pre>
<p>So that works fine. The <code>to_json</code> method is provided in the dm-serializer library. All I want to do is randomize that feed so the photos don't show up in the same order every time. Since DataMapper doesn't have built-in support for random selects, I tried sorting the results, but <code>to_json</code> gets mad because the sort_by turns the DataMapper::Collection into an Array..</p>
<pre><code>Photo.favorites.sort_by{rand}.to_json(:methods => [:foo, :bar])
# wrong argument type Hash (expected Data)
</code></pre>
<p>I searched for that error and saw a lot of Rails-related stuff about ActiveRecord and conflicts between competing <code>to_json</code> methods, but nothing really about DataMapper. A lot of people recommended using <code>json_pure</code> instead of the <code>json</code> gem, so I gave that a try by adding <code>require 'json/pure'</code> to my Sinatra app. Now the query above gives me this error instead..</p>
<pre><code>Photo.favorites.sort_by{rand}.to_json(:methods => [:foo, :bar])
# undefined method `[]' for #<JSON::Pure::Generator::State:0x106499880>
</code></pre>
<p>I also tried doing the randomization with straight SQL:</p>
<pre><code>def self.random
repository(:default).adapter.query('SELECT * FROM photos WHERE favorite = 1 ORDER BY RAND();')
end
</code></pre>
<p>But that doesn't really work for me because it returns Struct objects with attributes, rather than instances of the actual Photo class. This means I can't leverage the handy to_json arguments like <code>:methods</code>.</p>
<p>Lastly I tried using <code>find_by_sql</code>, but I guess the method's been removed from DataMapper?</p>
<pre><code>def self.random
find_by_sql("SELECT * FROM `photos` ORDER BY RAND();")
end
# undefined method `find_by_sql' for Photo:Class
</code></pre>
<p>Sheesh! Any thoughts on how to resolve this?</p>
http://stackoverflow.com/questions/1695956/undefined-method-merge0undefined method mergekristian nissen2009-11-08T10:20:55Z2009-11-08T23:30:41Z
<p>merb datamapper seems to be broken.</p>
<pre><code>$ merb
Loading init file from /home/kristian/workspace/ruby/nightly/config/init.rb
Loading /home/kristian/workspace/ruby/nightly/config/environments/development.rb
:size option is deprecated, use String with :length instead (/usr/lib/ruby/gems/1.8/gems/merb_datamapper-1.0.12/lib/merb/session/data_mapper_session.rb:10)
~ Connecting to database...
~ Loaded slice 'MerbAuthSlicePassword' ...
~ Parent pid: 5790
/usr/lib/ruby/gems/1.8/gems/merb_datamapper-1.0.12/lib/merb_datamapper.rb:61:in `run': undefined method `merge' for #<DataMapper::Model::DescendantSet:0xb6f9bd14> (NoMethodError)
</code></pre>
<p>Anyone know how to fix this? </p>
<p>I just uninstalled merb and installed it once again, but I am still getting this error.</p>
http://stackoverflow.com/questions/205182/reusing-a-resultmap-for-different-column-names0Reusing a resultMap for different column namesAndrew2008-10-15T15:31:29Z2009-11-01T20:00:02Z
<p>Is there a way of reusing the same resultMap multiple times in a single query.</p>
<p>For example, suppose I have a "foo" resultMap:</p>
<pre><code><resultMap id="foo" class="Foo">
<result property="Bar" column="bar" />
</resultMap>
</code></pre>
<p>Is there a way to define another resultMap that reuses the above for different columns? Something like...</p>
<pre><code><resultMap id="fizz"class="Fizz">
<result property="Foo1" column="bar=bar1" resultMapping="foo" />
<result property="Foo2" column="bar=bar2" resultMapping="foo" />
<result property="Foo3" column="bar=bar3" resultMapping="foo" />
</resultMap>
</code></pre>
http://stackoverflow.com/questions/1498662/want-to-sort-by-association-records-count-in-datamapper1Want to sort by association records count in DatamapperPeter Rotham2009-09-30T14:58:22Z2009-11-01T03:23:37Z
<p>Lets say I have the following DataMapper resources:</p>
<pre><code>class Post
include DataMapper::Resource
has n, :comments
...
end
class Comment
include DataMapper::Resource
belongs_to :post
...
end
</code></pre>
<p>To get the ordered list of posts, I know you can do:</p>
<pre><code>@posts = Posts.all(:order => :date.desc)
</code></pre>
<p>But lets say I want to display all the Posts ordered descending by how many comments they have. How would I do that?</p>
http://stackoverflow.com/questions/1621506/how-do-i-set-a-data-mapper-object-to-be-accessed-in-view-with-ocular-in-codeignit0How do I set a Data Mapper object to be accessed in view with Ocular in CodeIgniter?Geshan2009-10-25T17:39:00Z2009-10-25T17:44:47Z
<p>Previously using Ocular 0.25 I was able to set an object as a view data, that I could access in the view: like:</p>
<pre><code>$b= new book(); $b->get_where("id",5);
$this->ocular->set_view_data("b", $b);
//could be accessed in view as $b
</code></pre>
<p>but in the new Ocular 1.0.1, when I try to set a data mapper object it gives me a blank screen, without any error. I can't create an object in the view and its not even logical and good MVC but I can't set the object in the controller function.</p>
<pre><code>$b= new book(); $b->get_where("id",5);
$this->ocular->set("b", $b); //causes a blank screen no errors nothing but blank screen
//but if I do. $b = "test";
$this->ocular->set("b", $b); //This works fine
//in the view
$b = $this->ocular->get("b"); //is not possible.
</code></pre>
<p>Can anyone help me with the solution, I am using Ocular 1.0.1 and Data Mapper 1.5.4 but I am not able to load an object in the view.</p>
http://stackoverflow.com/questions/722189/any-other-object-to-object-mapping-solutions-other-than-automapper-in-net1Any other object-to-object mapping solutions other than AutoMapper in .NET?fpo2009-04-06T16:27:59Z2009-10-25T10:27:45Z
<p>I would like to know if the other similar open source solutions in .NET world, especially for 2.0 framework</p>
http://stackoverflow.com/questions/1618645/chained-aggregate-call-across-association-in-datamapper-ruby0Chained aggregate call across association in DataMapper (ruby)kEND2009-10-24T18:04:52Z2009-10-25T02:31:01Z
<p>I am working on a simple budget app using Sinatra and DataMapper in Ruby.</p>
<p>I want to get the sum of all transactions across all income accounts within the last 30 days.</p>
<p>Something like <code>Account.income_accounts.account_entries.sum(:amount, :transaction_date.gte => Date.today - 30)</code> should work. Instead, the limiting condition on <code>transaction_date</code> is getting ignored, returning the sum of the amount for all entries for all income accounts.</p>
<p>Given the following:</p>
<pre><code>class Account
include DataMapper::Resource
has n, :account_entries
property :id, Serial
property :name, String
property :acct_type, String
def self.income_accounts
all(:acct_type => 'Income')
end
end
class AccountEntry
include DataMapper::Resource
belongs_to :account
property :id, Serial
property :account_id, Integer
property :description, String
property :amount, BigDecimal
property :transaction_date, DateTime
end
</code></pre>
<p>I am properly requiring <code>dm-aggregates</code>. I am new to DataMapper. If it matters, I am using a sqlite3 database. I really don't want to resort to using ruby to sum the results. It also feels wrong to resort to executing raw SQL for this type of simple aggregate query. </p>
<p>Can anyone shed some light on this? I would love to be pointed in the right direction regarding chained finders in DataMapper, particularly with aggregates. My spelunking into the API and the DataMapper site hasn't yielded a solution as of yet.</p>
http://stackoverflow.com/questions/1619028/automatic-logging-of-datamapper-queries0Automatic logging of DataMapper querieskEND2009-10-24T20:38:11Z2009-10-24T20:57:53Z
<p>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.</p>
<p>I have tried:</p>
<pre><code>DataMapper::Logger.new(STDOUT, :debug)
</code></pre>
<p>in my <code>configure do ... end</code> block in an <code>environment.rb</code> file that loads when the app is started. </p>
<p>I have also tried:</p>
<pre><code>DataMapper::Logger.new('log/my-app.log', :debug)
</code></pre>
<p>Neither yields log statements from the app accessed either through a browser or through an <code>irb</code> session that requires my app. I do see the app starting message.</p>
<p>I am using <code>rackup config.ru</code> to run the app locally.</p>
<p>What am I missing?</p>
http://stackoverflow.com/questions/762252/fowler-data-mapper-object-creation0Fowler Data Mapper Object CreationExist2009-04-17T21:23:21Z2009-10-14T06:00:05Z
<p>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 existing ORM technologies as the underlying data sources are custom systems.
The area that’s troubling me is how to call the underling ORM when I need to create a new object. My Domain Layer has no visibility of my ORM, with the exception of my finders.</p>
<p>I’m not sure if I’m on the right track but the following are the only options I can see: </p>
<ol>
<li><p>Handle the create functions the same way the Fowler finders are done. Create an interface in the Domain Model layer for the creation methods on the ORM classes. Then have the Domain Model call a DI container and instantiate an instance of the ORM class based on the interface.</p></li>
<li><p>During hydration of object A in the ORM attach a delegate pointing to the creation method on the ORM for object B. Requiring domain object A is hydrated you could call the delegate on object A which would invoke the create method on object B's mapper.</p></li>
<li><p>???</p></li>
</ol>
<p>I must be missing something, as this can’t be that complex.
Any help would be much appreciated.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1547601/app-engine-jruby-datamapper-list-property0App Engine Jruby DataMapper List PropertyRafał Sobota2009-10-10T10:35:59Z2009-10-13T15:05:13Z
<p>Hi! How to use list/array as property in DataMapper on Jruby on Google AppEngine?</p>
http://stackoverflow.com/questions/1472805/what-is-the-best-mvc-doctrine2-datamapper-practice1What is the best MVC, Doctrine2, Datamapper practice?SuneKibs2009-09-24T16:28:57Z2009-09-27T08:30:46Z
<p>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.</p>
<p>My question is what is the best practice for using Doctrine and DQL with my controllers?</p>
<ol>
<li><p>controllers uses Doctrine
DQL/EntityManager directly for
saving/loading my domain models?</p></li>
<li><p>create my own classes in the
datamapper pattern for
saving/loading my domain models, and
then use Doctrine internally in
my own classes?</p></li>
</ol>
<p>The pros. for #1 is of course that I don't need to create my own datamapper models, but again, with #2 I can later replace Doctrine (in theory)</p>
<p>What would you do?</p>
http://stackoverflow.com/questions/219847/class-model-to-use-in-datamapper0Class model to use in DataMapperJon2008-10-20T20:46:33Z2009-09-10T13:00:00Z
<p>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?</p>
http://stackoverflow.com/questions/1117272/error-happens-when-i-try-all-method-in-datamapper0error happens when I try "all" method in datamappertoniowhola2009-07-13T00:11:29Z2009-09-09T04:36:42Z
<p>When I try to do this in Sinatra, </p>
<pre>
class Comment
include DataMapper::Resource
property :id, Serial
property :body, Text
property :created_at, DateTime
end
get '/show' do
comment = Comment.all
@comment.each do |comment|
"#{comment.body}"
end
end
</pre>
<p>It returns this error, </p>
<p>ERROR: undefined method `bytesize' for #</p>
<p>Could anyone point me to the right direction? </p>
<p>Thanks, </p>
http://stackoverflow.com/questions/1370518/datamapper-multi-field-unique-index0datamapper multi-field unique indexJohn F. Miller2009-09-02T22:37:37Z2009-09-05T01:53:17Z
<p>In Datamapper, how would one specify the the combination of two fields must be unique. For example categories must have unique names within a domain:</p>
<pre><code>class Category
include DataMapper.resource
property :name, String, :index=>true #must be unique for a given domain
belongs_to :domain
end
</code></pre>
http://stackoverflow.com/questions/1340819/tools-for-mapping-bussiness-objectsdto-objects-from-entities-in-asp-net-mvc0Tools for mapping bussiness objects(DTO objects) from entities in asp.net mvc?vijaysylvester2009-08-27T12:38:18Z2009-08-27T15:21:52Z
<p>is there any tool or utility(mapper assembly) to construct business objects from entities(which are obtained from DB using linq -> sql , entity framework or whatever..)</p>
<p>in the absence of one , can anyone suggest the best way that can be accomplished rather can copy pasting the properties(what i'm doing right now) from the entity classes.?</p>
<p>thanks.</p>
<p><a href="http://apvijay.blogspot.com" rel="nofollow">vijay</a></p>
http://stackoverflow.com/questions/1336880/strategic-eager-loading-for-many-to-many-relations-in-datamapper1Strategic Eager Loading for many-to-many relations in Datamapper?John F. Miller2009-08-26T19:14:28Z2009-08-26T19:14:28Z
<p>I'm using <a href="http://datamapper.org/doku.php?id=why%5Fdatamapper" rel="nofollow">DataMapper</a>, 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 many-to-many, where N+1 queries occur. I would like to hack around with making this work correctly, but I cannot find where to do it. So two part question:</p>
<ol>
<li>How to I run the test suite so it will show this to be failing (nb. right now all the specs that should be failing are marked as pending)?</li>
<li>Where and how is SEL implemented for one-to-many relationships?</li>
</ol>
http://stackoverflow.com/questions/1180271/why-does-datamapper-use-mixins-vs-inheritance2Why does DataMapper use mixins vs inheritance?cloudhead2009-07-24T21:34:22Z2009-08-26T17:02:32Z
<p>So I'm just curious about this:</p>
<p>DataMapper uses a mixin for its Models</p>
<pre><code>class Post
include DataMapper::Resource
</code></pre>
<p>While active-record uses inheritance</p>
<pre><code>class Post < ActiveRecord::Base
</code></pre>
<p>Does anyone know why DataMapper chose to do it that way (or why AR chose not to)?</p>
http://stackoverflow.com/questions/1321560/datamapper-datetime-to-string-behaviour0Datamapper DateTime to String behaviourSebastian2009-08-24T10:21:35Z2009-08-24T12:54:49Z
<p>I write my first project wich using Datamapper as ORM, so please be patient. :)</p>
<p>I try to do get String from DateTime field:</p>
<blockquote>
<p>Error.first.submitted_at.to_s
=> "2009-08-24T12:13:32+02:00"</p>
</blockquote>
<p>Returned String is not good for me. In ActiveRecord I can do something like that:</p>
<blockquote>
<p>Error.first.submitted_at.to_s(:only_date)</p>
</blockquote>
<p>or any other date formatter. Is somethig similar available in DataMapper or I must to use strftime method?</p>
http://stackoverflow.com/questions/1309939/how-to-have-identity-map-in-doctine-orm0how to have identity map in doctine ORM keisimone2009-08-21T03:16:06Z2009-08-21T03:16:06Z
<p>need to use a good PHP ORM that has elements of Datamapper and i am not clever enough to code it myself.</p>
<p>chosen doctrine, but after reading through the user guide, cannot find anything that says how to use identity map to lower calls to database.</p>
<p>please show me how to have identity map in doctrine ORM?</p>
<p>just read and understood stuff like datamapper, activerecord, identity map, domain model YESTERDAY via fowler's PEAA book.</p>
<p>so please go a bit more details in the answers. thank you.</p>
http://stackoverflow.com/questions/1072186/is-there-any-php-orm-similar-to-rubys-datamapper0Is there any PHP ORM similar to Ruby`s DataMapper ?Dan Sosedoff2009-07-02T02:43:24Z2009-08-20T21:58:16Z
<p>I working mostly with DataMapper in Ruby and Merb, so im looking for PHP ORM that is similar to DataMapper. Any good ones?</p>
http://stackoverflow.com/questions/1050239/is-there-a-data-mapper-like-dozer-for-c0Is there a data mapper like Dozer for c#vfilby2009-06-26T17:21:28Z2009-08-20T18:32:21Z
<p>I am looking for something similar to Java's Dozer for C#, something that uses reflection to automatically maps the data fields in one object to another.</p>
<p>A link to Dozer: <a href="http://dozer.sourceforge.net/" rel="nofollow">http://dozer.sourceforge.net/</a></p>
http://stackoverflow.com/questions/993868/complex-datamapper-query-association1Complex DataMapper query associationDan Sosedoff2009-06-14T22:03:19Z2009-08-11T20:07:54Z
<p>Hello, im a beginner with DataMapper ORM, so i have question about complex querying. </p>
<p>First, here is simplified data objects:</p>
<pre><code>class User
property :id, Serial
property :login, String
has n, :actions
end
class Item
property :id, Serial
property :title
has n, :actions
has n, :users, :through => :actions
end
class Action
property :user_id, Integer
property :item_id, Integer
belongs_to :item
belongs_to :user
end
</code></pre>
<p>This is how data in db looks like:</p>
<pre><code>+ ------- + + ------- + + ------- +
| Users | | Items | | Actions |
+ ------- + + ------- + + ------- +
| 1 | u1 | | 3 | i1 | | 1 | 4 |
| 2 | u2 | | 4 | i2 | | 1 | 3 |
| ....... | | 5 | i3 | | 1 | 4 |
+ ------- + | ....... | | 1 | 5 |
+ ------- + | 1 | 6 |
| 1 | 3 |
| ....... |
+ ------- +
</code></pre>
<p>So, for example User 1 has viewed some items N time. And what i cant figure out, how to select items and their action amount relating to user.</p>
<p>For example, the result for user 1 should be like this:</p>
<pre><code>+ -------------------- |
| Items (item_id, num) |
+ -------------------- |
| 3, 2 |
| 4, 2 |
| 5, 1 |
| 6, 1 |
+ -------------------- +
</code></pre>
<p>P.S. regular SQL query that matches my needs:</p>
<pre><code>SELECT i.id, i.title, COUNT(*) as 'num'
FROM actions a
JOIN items i on i.id = a.item_id
WHERE a.user_id = {USERID}
GROUP by a.id
ORDER BY num DESC
LIMIT 10;
</code></pre>
<p>So, how to do this and is there are any docs about complex datamapper queries?</p>
http://stackoverflow.com/questions/1136630/datamapper-with-arbitrary-selects0Datamapper with arbitrary selectsGiorgi2009-07-16T10:10:00Z2009-07-16T10:10:00Z
<p>There should be a way to map a DataMapper model against an arbitrary select (please see an example: <a href="http://www.sqlalchemy.org/docs/05/mappers.html#mapping-a-class-against-arbitrary-selects" rel="nofollow">http://www.sqlalchemy.org/docs/05/mappers.html#mapping-a-class-against-arbitrary-selects</a>)
So far I have found a solution (or a starting point to reach it) that looks like the following:</p>
<pre><code>find_by_sql(an_sql_select, :properties=>some_properties_set)
</code></pre>
<p>Is this a right way?</p>