Object-relational mapping (ORM) is a technique for mapping between object-oriented systems and relational databases.
0
votes
1answer
20 views
Django filters “or”
class Tag(models.Model):
parent = TreeForeignKey('self', null=True, blank=True, related_name='%(class)s_children')
products = models.ManyToManyField('Product', through="ProductTags", blank=True)
...
0
votes
0answers
30 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
2answers
61 views
What ORM should I use for Spring MVC Project with Derby db?
i'm developing a web project which use Spring MVC and an apache derby embedded. This database contains a table for Users, Roles and Users-Roles. I have to do a typical CRUD. Due to it is my first time ...
0
votes
1answer
49 views
Grails Cassandra ORM
I am trying to persist a domain object in Grails to Cassandra database using Cassandra ORM plugin. I have successfully persisted it to H2 using GORM before, however I want to give Cassandra a try.
...
0
votes
3answers
21 views
modeling a very simple isA relationship : 2 tables with even/odd ids or 3 tables?
We have two types of hospital staff in our project
Doctor
Nurse
and this is never gonna change (i.e. no other staff type). There is quite an overlap between the two entity types (e.g. login ...
0
votes
1answer
40 views
persist () and flush() inside loop - Doctrine
I want to know how many times the ff: codes will make a roundway trip to the database.
foreach ($recipients as $recipient ){
$received_email = new ReceivedEmail();
...
2
votes
2answers
43 views
How to check for a specific field change in a model?
I have my models.py :
class Hotel(models.Model):
name = models.CharField(max_length=20)
currency = models.ForeignKey(Currency)
class Currency(models.Mode):
code = ...
1
vote
1answer
54 views
Merge 2 POCO into 1 Class and execute CRUD
I am using PetaPoco as an ORM and want to combine 2 POCO into 1 class and then execute CRUD operations with this class.
Right now I got something like this:
*Table Person has an fk address_id.*
...
1
vote
1answer
39 views
JPA EclipseLink Weaver generates call to porperty getter inside its setter -> NullPointerException
I have an @Embeddable class that uses property access to wrap another object that's not directly mappable by JPA via field access. It looks like this:
@Embeddable
@Access(AccessType.PROPERTY)
public ...
0
votes
1answer
57 views
SQLAlchemy: about self referential relation (error: no attribute '_sa_instance_state')
I want to implement some many to many and self referential mapping kind like the graph of keywords in a keyword net. For example, "apple" is a child of "juicy fruits", at the same time, "apple" is the ...
0
votes
0answers
40 views
Features comparison between Hibernate and eclipseLink
I want to see the most relevant differences between Hibernate and eclipselink (features). What do we take into account to choose one or other of them ? what has hibernate that eclipselink hasn't ?
...
0
votes
2answers
73 views
Simple Java EE client desktop aplication and web with mysql
At start i have to say that im totaly new to java ee and quite new in java at all. I have to do my study project with this one. First of all i need a standard desktop aplication that connects with the ...
0
votes
1answer
47 views
Why is EntityFramework Namespace undefined even after installing EntityFramework with Package Manager console?
All:
We started off our project using ASP.NET Web Forms.
Our ASP.NET C# web application is used in the following environment
.NET Framework 4
ASP.NET Web Forms.
IIS 7
Windows 2008
Visual Studio ...
0
votes
2answers
66 views
java hibernate BO passing foreign key as DAO parameter (architecture design)
I've got a following architectural problem (the text is long, but the problem should be easy for experienced java developers):
I'm learning Java and I'm developing a simple database application that ...
0
votes
1answer
28 views
java orm/data access object - interface for deleting a record
I've got a following Java interface that is used as a DAO for Category entities:
public interface CategoryDao extends Dao {
public void save(Category category);
public void update(Category ...
0
votes
1answer
34 views
Autoincrement not written to object
I'm using SQLAlchemy as my ORM layer to access my MySQL Database.
Here is the table, mapper and model, I'm talking about:
CREATE TABLE user (
uid INT(12) NOT NULL auto_increment,
email ...
2
votes
3answers
44 views
get most discussed forums in rails
I got two classes: Forum and Topic. Forum has_many Topics.
How do you get the (lets suppose) 5 most disscused forums?
How do you limit it by Date? for example, most disscused this day/week etc. ...
0
votes
1answer
25 views
Redbean: does addDatabase immediately connect to said database?
Simple question, does the following command automatically connect to the given database?
R::addDatabase('DB1','sqlite:/tmp/d1.sqlite','user','password',$frozen);
Or does it wait until you actually ...
0
votes
1answer
57 views
Using Telerik ORM it is throwing error when joining 2 tables from different contexts
I am very new to Telerik ORM, so please bare with me. I am also semi new to LINQ , although I just read the "Wrox Professional LINQ" book, so I feel comfortable with it.
I am trying to use a join in ...
0
votes
2answers
47 views
Association fail with doctrine mapping Doctrine 2
I've got the following problem with doctrine 2, i want to join my adress entity and country entity to my user entity. So after some tries it works fine in the database, but when i use ...
1
vote
1answer
65 views
How to mapping the relations between classes (@ManyToMany) for a table
How to mapping the relations between three class @ManyToMany unidirectional for a unique table ?
The relations is like that:
Project have many Task
Many Task have many specifcs Activitys (to ...
0
votes
1answer
60 views
how can I make symfony see my new relations between tables?
I am using symfony 1.4 for a project (already started), now I am changing some stuffs and I get an error of relations when I query for some info between two tables, one already exist and the other one ...
1
vote
0answers
59 views
ORM for SQLite in iOS
I am trying to convert a C# application we had developed to an iPad application. As we developed the app with Entity framework, I am looking for a counterpart for iOS.
According to this answer, there ...
0
votes
1answer
35 views
ORM designer for end user [closed]
Feature based development makes our team provide different databases for each feature branch.
Databases can differ by scheme but all data comes from one "master" db.
We use Entity Framework and POCO ...
1
vote
1answer
58 views
Can I indicate mapping file using relative paths in hibernate?
I am developping a standalone application with hibernate, using the following stucture for my project :
This is how I told hibernate(yes, I'm chatting with Hibernate) where to find the ...
0
votes
1answer
50 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
0answers
14 views
Why ActiveRecord doesn't know that a relational object is the same?
I have two models (UserAccount and DeviceToken) that are related to a third one (a User)
My user
class User < ActiveRecord::Base
attr_accessible :score
[...]
A UserAccount, that have one ...
0
votes
1answer
33 views
Symfony2 + Doctrine : Tool for generating relations between entities
when I want to create a new entity I use the following command :
php app/console doctrine:generate entity
But this will help me only to generate attributes with their setters and getters
Is ...
0
votes
1answer
62 views
find query for many to many relation propel
i am new for propel .
i face a problem to fetch all record form both table which have many to many relation .
i have a user and group table. and a join table user_group.
user and group have ...
0
votes
0answers
33 views
Q Stored procedure and trigger using ORM model
I have this Model of a thermostat which shows the different relationships between the elements of the database:
picture of orm model in this link: Problems with writing SQL Stored Procedure + Trigger
...
1
vote
1answer
36 views
PyORMish losing MySQL connection with Flask
I have the following model:
class Page(Model):
_TABLE_NAME = 'page'
_PRIMARY_FIELD = 'id'
_SELECT_FIELDS = ('id','title','blurb')
_COMMIT_FIELDS = ('title','blurb')
And in Flask, I ...
1
vote
3answers
42 views
How does ORM relate classes/attributes to tables/fields?
I'm trying to understand ORM and looking for examples of the following explanation:
tables map to classes,
rows map to objects,
columns map to object attributes
I understand that tables map to ...
0
votes
1answer
43 views
Doctrine ORM - Same entity, different table for different ownership
I have an entity that in it's lifetime moves to different tables. Like so:
A village has many units
An army movement on the map contains many units
After an attack, the log file contains many units ...
1
vote
1answer
75 views
Extend ORM persistent CFCs in parent/sub application
I'm working on a parent/sub application structure in CFML (Railo) and I'm struggling with extending my persistent (ORM) CFCs.
What I'd like is for my persistent CFCs to live in the parent ...
1
vote
1answer
82 views
Using multiple frameworks | DayCQ + Spring + Hibernate
We're in the process of redesigning a large application (web-portal). We are suppose to use existing database that they have used for their old application. Now we are planning to use CQ for hosting ...
1
vote
1answer
16 views
How do you access parent and children relationships through the ORM with a conditional on the parent where record child exist?
I am trying to create a query through the Django ORM which is a straight join. I am trying to extract only records from parent table that have an entry in the child table, In addition, I would like to ...
1
vote
1answer
40 views
SQLAlchemy: pool_size and SQLite
The code
create_engine(sqlite:////infodb/timestamp.db', pool_size=10)
works fine in SQLAlchemy version 0.6.3. However, it does not work in version 0.7.1.
The error message I am getting is as ...
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()
}
1
vote
1answer
45 views
SORM development plans
Does anyone know which latest scala version SORM supports? Also is the development of SORM ongoing? Finally, Are there any plans to support noSQL databases or as the name implies, is it only for ...
1
vote
2answers
55 views
Looking for suggestions for good ActiveRecord-like ORM for use with android applications
I'm learning Android application development and coming from a RubyOnRails background. Looking at the way Android handles DB interaction is like cutting my legs off.
Are there any best practices for ...
2
votes
2answers
92 views
Hibernate: how to create a constraint with two columns (field) of the same table (or entity)
I have an hibernate entity which contains two dates: start and finish.
@Entity
public class MyEntity{
private Date start
private Date finish;
...
@Temporal(TemporalType.DATE)
...
0
votes
0answers
42 views
ActiveAndroid Updating table fields whilst leaving automatically generated row id the same
I am trying to find a method of updating fields in a table row whilst leaving the row id (automatically generated by Active Android) the same. Is this possible in Active Android or does the row id ...
0
votes
0answers
99 views
Using Dapper with Oracle User-Defined Types
Is there a way to use Dapper with Oracle User-Defined Types returned by stored procedures?
Dapper seems to work with stored procedures (see Using Dapper with Oracle stored procedures which return ...
0
votes
0answers
25 views
sqlalchemy count entries get slow when the database gets larger
I'm now writing a website using tornado and sqlalchemy, and I have to use the count method in sqlalchemy to get the total amount of entries, I use it in this way:
count_query = ...
0
votes
0answers
34 views
Use a combined PK in other entity
Hi I have a ManyToMany relationship between two entities, and I have to use this new combined PK in another entity, how can implement it in ebean or JPA ?
0
votes
0answers
30 views
PetaPoco, ambigious settings error
Been testing (trying to test actually) the petapoco for a few hours and the problem i get is:
Ambigious reference with the class name and namespace also in t4 generated database.cs file.
...
0
votes
0answers
85 views
Telerik ORM User defined types
I have a SQL table called "Person" and it has columns below:
Id uniqueidentifier,
Name varchar(50),
LastName varchar(50),
Phone varchar(20),
email varchar(100),
Address vatchar(150),
City ...
2
votes
3answers
145 views
Scalable and fast REST APIs to expose ORM methods
I need to develop REST APIs to expose CRUD operations to DB and some business logic. I prefer this module to be standalone, fast, scalable and nimble (no unnecessary modules that provide functionality ...
1
vote
0answers
379 views
NHibernate vs Entity Framework 5 auto connecting entities
Recently I've come back to the question NHibernate vs EF5 for the Enterprise Application.
I know many important differences, but this one is the most suprising for me.
Consider two classic entities, ...
0
votes
0answers
46 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 ...







