Architectural pattern for separating application logic from storage.

learn more… | top users | synonyms

0
votes
1answer
9 views

DataMapper behaving differently when Rails app is run as console and server

I have a Rails 3.1 app and I use DataMapper as ORM. I have following models (stripped): class Task include DataMapper::Resource belongs_to :group end class Group include DataMapper::Resource ...
1
vote
1answer
19 views

How to anonymize certain fields using Entity Framework

We have a set of entities that contains data fields that needs to be anonymized to certain users. We have a product database, but the true name of the product should only be visible to certain users. ...
0
votes
0answers
12 views

Slow Datamapper model rendering in Rails

In our current project using Datamapper with Rails 3.2.8, with a complex models relationships we've had observed long view generation times. Looking into thin logs we found that we have really long ...
0
votes
1answer
21 views

Adding a table to datamapper gives me 'uninitialized constant' error

I'm trying to add a table to my app but when I do I get the error shown below. But I don't understand why? All I did was adding the Recommendation class. class Item include DataMapper::Resource ...
0
votes
0answers
15 views

Deploying app to Heroku - dm-core and dm-postgres-adapter issue?

I am having an issue deploying to Heroku - here is the strange line of my log file: /app/vendor/bundle/ruby/1.9.1/gems/dm-core-1.2.0/lib/dm-core/adapters.rb:163:in 'require': no such file to load -- ...
0
votes
0answers
18 views

Multiple file upload with Padrino, Datamapper, and Carrierwave

I am trying to create a multi-image uploader in Padrino using Carrierwave. Here's the gist: I have a simple pair of models: Artwork, representing an artwork, and Image, representing detail images of ...
0
votes
1answer
47 views

Reducing service config duplication with a custom service locator?

My app uses the data mapper pattern, so I have a number of mapper classes, which each needs an instance of the database adapter. So the factories section of my service config is filled with entries ...
0
votes
1answer
22 views

Ruby/DataMapper: Problems with multiple many-to-many associations

I have implemented models for User-Group relationship, where one User can be a member and owner of one or more Groups and where one Group can have one or more owners and one or more members. Now, the ...
0
votes
0answers
43 views

Ruby DataMapper: Conditions through associations

I have a class Expression which belongs to a Language and which have a many-to-many relationship with a Concept. So, an Expression belongs to a Language and a Expression can have many Concept, and at ...
0
votes
1answer
30 views

Using data mapper inside another data mapper in Java?

I'm using the data mapper pattern in Java for accessing the database. Is it OK to call a mapper inside of another mapper? As far as I'm concerned, mappers should work on their own without a dependency ...
1
vote
1answer
31 views

Testing if an instance of a class receives a message when a class method that sends the message to all instances is called

Though correct, the title needs some explanation :) I have this class: class Character include DataMapper::Resource def self.tick_all all.collect &:tick end def tick # do stuff ...
1
vote
1answer
23 views

Creating new Datamapper resources (database entries) using .each

I want to take Google Custom Search API results and add them to a database using Datamapper. I've managed to successfully set up and manually add some items to the database, so it seems like that is ...
2
votes
1answer
41 views

DataMapper Many-to-Many Delete Constraint

Let's say we have two models with a many-to-many relation: class Tag include DataMapper::Resource property :id, Serial has n, :articles, through: Resource end class Article include ...
2
votes
1answer
64 views

What is the correct way to setup database with DataMapper and Sinatra on production server?

From the DataMapper document, I think there are at least four functions need to be called to have database setup: DataMapper.setup(:default, 'sqlite:///path/to/project.db') DataMapper.finalize ...
0
votes
0answers
20 views

Datamapper does not save/update entry

I'm currently developing a quick little sinatra app, and I've managed to conquer authentication quite easily. However I cannot for the life of me get password changing to work. I'm using the code ...
1
vote
1answer
43 views

Sinatra matches params[:id] as string type, additional conversion needed to match the database id?

I am using sinatra and DataMapper to access an sqlite3 database. I always get an nil when calling get(params[:id]). But when I call get(params[:id].to_i) I can get the right record. Is there anything ...
0
votes
1answer
12 views

data_mapper find number of rows

I can't find an answer for this elsewhere, so I'm asking here: How do I "SELECT COUNT" with data_mapper? What I've tried: MyClass.count MyClass.size MyClass.all.count MyClass.all.size What does ...
0
votes
0answers
28 views

Why DataMapper.finalize.auto_upgrade! doesn't work on Heroku?

I'm writing a simple app in Ruby/Sinatra with DataMapper @ postgre and I'm trying to getting it work on Heroku. I know Heroku needs 'pg' gem, and it works, but the app crashes on following line: ...
0
votes
2answers
42 views

Get associated records with Datamapper using Sinatra

I am currently working on a small backend, managing events with associated locations. Unfortunately, it's my first time i work with Ruby/Sinatra/Datamapper. After 3 hours trying to find a solution, i ...
0
votes
1answer
23 views

Save callbacks not running after append

I'm having a problem trying to append a relationship using the << operator. If I save after the append, my callback does not seem to run. I have two models: Fabric class Fabric include ...
2
votes
1answer
34 views

DataMapper can't convert string to integer enum

I have the following model class TagType include DataMapper::Resource ## Relationships belongs_to :category has n, :tags ## Properties property :uuid, UUID, :key => true, :default ...
0
votes
1answer
44 views

CodeIgniter datamapper selecting empty columns

I am trying to select empty columns using datamapper. Below is what I tried: $u = new test(); $u->where("id",1); $u->select('name'); $u->get(); $u->result_count(); I am ...
0
votes
0answers
42 views

Multiple DataMapper DB connection sessions with sinatra

I'm trying to write a SequalPro-esq connection webview that connects to the database of your choice. I have successfully figured out how to do this, however my struggle is that if multiple people ...
1
vote
1answer
47 views

How to render views count by browser in Sinatra and Datamapper?

I have View and Link models Link has_many :views View belongs_to :link irb(main):001:0> View.all => [#<View @id=1 @link_id=1 @browser="Chrome" @created_at=#<DateTime: ...
0
votes
1answer
98 views

NoMethodError - undefined method 'id' for nil:NilClass with Sinatra app when deployed on Heroku

I am stuck with this problem. I have the following DataMapper model in my Sinatra app; class Word include DataMapper::Resource property :id, Serial, :key => true property :word, String end ...
0
votes
0answers
24 views

Replacing the Bridge pattern with a Data Mapper?

In my last project the mapping between the domain objects and the GUI elements was supported by the Bridge pattern. Now I am a starting a fresh new project and can already foresee the need of a Bridge ...
0
votes
1answer
33 views

How can you possibly use Data Gateway in conjunction with Data Mapper?

Well according to Martin Fowler, the table/row data gateway aint mutually exclusive against data mapper pattern. This is what he said: These patterns arent entirely mutually exclusive... Even if ...
0
votes
1answer
31 views

Infinite recursion while overriding DataMapper methods

I'm trying to override the all() and first() methods in a DataMapper model I have, but there are some issues. My methods are being called, but (as became immediately obvious) they call themselves ...
0
votes
3answers
67 views

one base executeQuery method or one for every query

I've started creating a toDoList and I like to create a "DataMapper" to fire queries to my Database. I created this Datamapper to handle things for me but I don't know if my way of thinking is ...
0
votes
0answers
13 views

Send DataMapper Migrations to a File

As part of an automated deployment process I'm working on, I need to send the output of datamapper's migration output to a file. So performing a rake db:migrate outputs the following to the screen. ...
0
votes
0answers
31 views

Datamapper ORM with memcache

I am using the wonderful ORM library at http://datamapper.wanwizard.eu/ in a PHP project. Is there a way to integrate memcache into this? I have enabled the config for the datamapper cache but this is ...
0
votes
1answer
45 views

Codeigniter Datamapper ORM issue with array and object?

I have a block code: // Creat a object $privilege = new Privilege(); // Get all privileges $privilege->get_iterated(); $privileges = $privilege->all_to_array(array('id', ...
0
votes
1answer
54 views

Data Mappers calling each other in Domain Driven Design pattern

In my project I am using a Domain Driven Design Pattern. I have various data mappers that I use for persisting my model objects. Some of my models contain other models as attributes (e.g., model class ...
0
votes
1answer
39 views

NoMethodError when defining custom DataMapper property type

I'm using DataMapper 1.2.0 and trying to define a custom property type to save in the database. I'm trying to understand how I'm supposed to do this, but I keep getting a NoMethodError. The object is ...
0
votes
1answer
69 views

Datamapper comparing strings SQL and PHP

I'm trying to compare two strings using CodeIgniter and Data Mapper with PHP and MySQL, I found the function similar_text for PHP and using it in this function: $v = new Vendedor(); $v -> get(); ...
0
votes
1answer
59 views

Mule DataMapper String List

I tryng to making a complex mapping (complex to me) with the follow scenario: In: <root> <bigrow> <row>1</row> <row>second</row> ...
0
votes
1answer
215 views

EF5 ASP.NET MVC 4 Linq query not returning anything & model property null -> Code First

Im having trouble linking my loaned items to my Library for each customer. It does it fine when it goes through the "AddToLibrary" method but when it comes to retreiving it, the medialibrary is empty ...
-1
votes
1answer
26 views

Why datamapper always round a default decimal to a integer

I use Ruby sinatra with datamapper. In my model I have a decimal property property :sim_update_interval, Decimal, :precision=>10, :scale=>2 , :default=>0.9 The problem is: Everytime I ...
0
votes
1answer
52 views

from_array() method in Datamapper ORM Codeigniter

I'm using DATAMAPPER ORM V1.8.2. I have a question for from_array method: Firstly, I have a dropdown with *name="group_id"* <select name="group_id" class="small-input"> <option ...
0
votes
1answer
40 views

Datamapper ORM: get an object by array of ID's

i have an array like this: $arr = (1, 3, 87, 200); I wanna get the Object for these IDs only ca I do it like this: $object = new Object($arr); foreach($object as $o) { $o->user->get() }
0
votes
1answer
38 views

datamapper: get object order by relationships fields

I use Codeigniter with datamapper orm and have a problem this are my models: mailing -> has many row row -> has many cell cell -> has many version version has one created and one ...
0
votes
1answer
43 views

code igniter datamapper join get()

I am using this join in my code igniter model $this->db->select('e.name, p.projects'); $this->db->from('example as e'); $this->db->join('procure as p', e.id = p.id'); ...
0
votes
1answer
48 views

Code igniter with data mapper giving in valid json

I have this to select columns from a table and I want to pass this to Jquery ajax fn. I am using below code but getting invalid json My table has three column id, name and city but I am not ...
0
votes
2answers
67 views

CodeIgniter with datamapper ORM

I am using get() method in data mapper to select columns from database. I am passing this object to json_encode(); When I do this, I get this error json_encode() type is unsupported, encoded as ...
0
votes
0answers
27 views

Codeigniter Datamapper save() not saving to database

i have the similar problem with this question, but typecasting them to similar tipe on table field type not help. i use codeigniter 1.7.2 and Datamapper DMZ 1.7.1 anyone have any idea to solve this?
0
votes
0answers
48 views

Codeigniter ORM Datamapper save error

I'm new to datamapper, i try to save an object using this code $user = new users(); $user->name = $name; $user->parent = $id_parent; $user->seq = $seq; $user->save() codeigniter give ...
2
votes
0answers
61 views

Rake migrate Error - database doesn't exist

I have a padrino project that uses data mapper and postgres. When I run padrino rake dm:create it says that the database is created. However, when I run padrino rake dm:auto:migrate, I get the error - ...
0
votes
0answers
26 views

immutable resource cannot be modified, datamapper

Trying to do a very basic thing with ruby, data mapper: @user = User.first(:username => at.params['screen_name']) if(@user.nil?) @user = User.new(:username=> at.params['screen_name'], ...
0
votes
0answers
42 views

Codeigniter Datamapper Outer Join vs Inner Join

I have a relationship for users and flags. I have an ORM class for each with a have many in User and a has one in Flag. As in many flags can be raised by a given user. In my Datamapper class the code ...
0
votes
0answers
82 views

ORM for CodeIgniter—DataMapper? Eloquent? [closed]

It has been recommended to me to use Eloquent as an ORM for CI. I have encountered a good amount of errors with this. Most I have since resolved, but it does seem a bit awkward. Does DataMappper have ...

1 2 3 4 5 18