Object-relational mapping (ORM) is a technique for mapping between object-oriented systems and relational databases.
1
vote
1answer
24 views
Django one-to-one reverse relationship DoesNotExist
I've got an odd problem here, where my one-to-one relationship doesn't seem to be working in reverse. It's easiest to explain with code.
I have extended the default Django User to add a timezone, as ...
0
votes
0answers
23 views
Hibernate override joined inheritance type
i have a simple object model which i want to mix inheritance strategies (single table and joined)
abstract class A
class B extends A
class C extends A
I want two tables A and B (C entity will be on ...
0
votes
0answers
23 views
Atomic conditional-update in Django
So I have two Models:
class Unit(models.Model):
name = models.CharField()
class Session(models.Model):
unit = models.ForeignKey(Unit)
startDateTime = models.DateTimeField()
endDateTime = ...
0
votes
0answers
12 views
advantage of select-before-update in hibernate
To avoid UPDATE statement while reattaching an object is through setting the select-before-update= “true”. If this is set, hibernates tries to determine whether UPDATE needed, by executing the SELECT ...
1
vote
1answer
28 views
Staying in the same Shell session with Python
I am building a Python script that will automatically create and arrange my new Django projects.
What I'm doing is;
create a virtualenv
activate the virtualenv with source my_app/bin/activate
pip ...
0
votes
0answers
19 views
How can I make a unhandled Objects send over by a Webservice/RMI Interface handled again by Eclipselink?
We have to make the Server for a application that communicates with it's Client over RMI and/or Webservice. We have to use ORM (Eclipselink) to write and read from the databse. So I implemented the ...
1
vote
3answers
61 views
Performance of Graph vs. Relational databases
I am working on a project where tons of graph operations are performed in near real-time. We are currently using Hibernate, MySQL and EhCache but considering moving all the graph-related persistence ...
0
votes
0answers
21 views
Any free service to convert relational database to objects? [closed]
Is there any service? Or it's impossible because there are many factors to do this?
If there's no services, where can I find information on how to do the conversion?
0
votes
0answers
9 views
Doctrine 2 Entities with different sources
need some help from you with the following case: I want use Entities / Models and have to get my data from a database, a config file and calls to a soap api. The reason is that i want to collect them ...
0
votes
1answer
16 views
Simple.Data and unit testing the business layer
I'm thinking of using the Simple.Data package (https://github.com/markrendle/Simple.Data) and thought of an interesting issue in terms of implementation.
Simple.Data appears to be designed abstract ...
0
votes
0answers
16 views
Doctrine Auto Generate Proxy
I created a new module inside Zend for some search functionality. But the problem here is how and where the doctrine auto_generate_proxy_classes DOCTRINE generated the proxy classes. My existing ...
0
votes
1answer
14 views
Query birthdays of the day with Doctrine ORM
With raw SQL I habitually do the following:
SELECT * FROM users WHERE MONTH(birthday) = 11 AND DAY(birthday) = 17.
But these MONTH() and DAY() functions does not work with all databases =/
So what ...
1
vote
0answers
56 views
Create a database table from a Type. In code. Simply
I've been looking to replace SqlCommand's with Entity framework or Linq-To-SQL. However, they seem to rely heavily on using the designer (which I rather minimize), and in the case of Linq-To-SQL it ...
0
votes
1answer
16 views
HIbernate configuration file shows a warning “No route to host :connect”
Hi sir i'm new to hibernate... My hibernate configuration file is as shown below
<?xml version='1.0' encoding='utf-8'?>
<session-factory>
<property ...
0
votes
0answers
12 views
Doctrine2: Updating association without retrieve related entity
I am building a web service, and would like to be able to update an association without retrieving the related entity.
To explain easily, let's imagine this a blog that has Post and Comments.
class ...
1
vote
1answer
19 views
Django: Give custom filtering methods to `QuerySet` objects of a specific model
I'm defining a model in Django. I want to define a few custom methods for its QuerySet objects. (i.e. I want to define custom ways to filter instances of that object, in a way peculiar only to that ...
0
votes
1answer
18 views
Automatically Build Database Table based on a Class with SQLAlchemy
I'm really new to SQLAlchemy, and I love it. Right now I'm doing a lot of things manually and I want to do things more 'pythonically' and dynamic.
So as an example, I have this short script that ...
0
votes
1answer
31 views
Cascade Update one-to-many with NHibernate
I'm struggling with a NHibernate mapping problem. I'm using Repository/UnitOfWork pattern, and I'm trying to cascade-persist my objects through update method. For an example: I can alter Foo, ...
2
votes
0answers
53 views
Fluent NHibernate table-per-inheritance (TPH) mapping for multi class in the hierarchy
Hello everyone,
I'm struggling with one Fluent NHibernate issue.
I have following template of class structure in the my solution:
class OneClass
{
public virtual string OneProp {get; set;}
}
...
1
vote
1answer
34 views
persist many to many relation in database symfony2
When persisting my entity from a form, I get the following error when flushing in database :
Catchable Fatal Error: Argument 1 passed to Doctrine\Common\Collections\ArrayCollection::__construct() ...
2
votes
0answers
44 views
ExtJS and Complex Save Operations
ExtJS 4.1
Given the overall disappointing functionality of saving association-heavy models, I have all but ditched model associations in my application and rely retrieving associated data myself. ...
0
votes
1answer
38 views
is there an equivalent to CoreData and AFIncrementalStore in Android
Our data in our Android app has started to get more complex and is being updated. So, I need to persist relational data that I am pulling from our backend via REST json services. I'm thinking I ...
0
votes
0answers
6 views
Adding an assocation entity using Doctrine methods won't insert the foreign key
Considering this simple action of creating a new wishlist.
It works properly until one point: It cascades the relation between User and Wishlist, but it doesn't insert the foreign key into the ...
0
votes
0answers
16 views
Are the queries in ODB threaded and the memory always up-to-date?
I recently (yesterday) started using odb for C++.
I am making a online multiplayer server and I cannot find the answer in any documentation on ODB.
Does ODB run the queries in background, yet keep ...
1
vote
0answers
31 views
OK to use JSON output as default for toString()?
@Override
public String toString() {
return new Gson().toJson(this);
}
Am I breaking some good practice, "Joshua"-pattern thing, general design pattern or other convention by simply doing this ...
3
votes
1answer
105 views
+100
Entity Framework 5 wrong data type in query
We are using EF 5.0 as our ORM of choice in our business solution, structured in a n-layer fashion with everything decoupled and a nice composition root with ninject.
Lately, we've been building a ...
0
votes
0answers
14 views
.net use Telerik ORM / extending MembershipProvider
I need point of views regarding an extranet project that i have planned to do.
Each user of the extranet would have different user right.
I know that the decorator pattern is a good way to accomplish ...
0
votes
1answer
29 views
How to properly set entity update time with Doctrine?
Column in MySQL table is called "updated_at".
It's of datetime type, not null.
Doctine type is datetime as well.
CREATE TABLE `example` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
...
0
votes
0answers
9 views
Extending an Entity Framework model via inheritance
I have an EF model that supports some basic functions that I'd like to reuse in several different applications:
[Core.dll]
CoreModel
- Users
- Clients
I'd like to take this model, and extend it ...
1
vote
1answer
40 views
Join in Django?
I'm trying to make an application in Django, but I need to do a JOIN in Django, Somethin like that:
SELECT User.name, Post.contain from User, Post where Post.User_id = User.id;
Hoy can i get the ...
-2
votes
1answer
55 views
Select only latest results for every unique foreign key [closed]
class Price(models.Model):
product = models.ForeignKey(Product)
date = models.DateField()
amount = DecimalField()
Have model where stored amounts for many products on many date(date may ...
0
votes
2answers
24 views
Embed product-variance logic into Django models
I wonder how I would model my Products model to auto-create (and that the admin-App would also understand it) variants of a Product based on it's variant-parts.
My Products have;
Colors
Sizes
and ...
0
votes
1answer
29 views
Django ORM and dependencies
I am currently brainstorming about building an existing PHP CodeIgniter project in Django.
I spit through the documentation a bit already and done some online tutorials to test how it works and am ...
-1
votes
0answers
33 views
I need a java framework with object-relational mapping support for postgres data base [closed]
I was using Hibernate but i got problems at the moment of generate the mapping classes. So I'm looking for other choices
0
votes
0answers
7 views
filter on prefetch entity using persistence js
I'm new to persistence js and I'm not sure if its possible to apply filter on a prefetch entity. I was using websql as store.
Below is the example that I was trying,
var Category = ...
0
votes
1answer
21 views
Ebean ManyToOne Mapping CRUD
I have two Entities Transaction and Category with ManyToOne mapping. So many transaction can fall into have category.
@Entity
class Transaction extends Model{
@Id
public Long id;
...
0
votes
1answer
23 views
Filter django objects based number of foreign references
I have an object that represents a list of items. Each item has a foreign key to this list.
class ItemList(Model):
pass
class Item(Model):
list = ForeignKey(ItemList, related_name="items")
...
1
vote
1answer
28 views
How to define my own mapping between java to database Object
Is these some Way to define my own mapping of hibernate to database Object??
For example, by default String maps to varchar(45), I want to change it to TEXT or just varchar(245) , what are the ways of ...
0
votes
1answer
32 views
Adding properties to object at runtime, and saving to a database
I have a set of model class definitions, each with some properties and methods.
Each new model class definition is mapped to its own database table, the properties forming the table columns. Each ...
1
vote
1answer
35 views
Django mysql table name did not validate
I added classes to Django app model to create mysql tables. I have 'downloads' table, and 'downloads' column in 'songs' table.
When i want to sync db, Django returns me error:
CommandError: One or ...
0
votes
0answers
10 views
Entity manager for appcelerator mobile
I know that joli library is a ORM for appcelerator but I want to know that is there any entity manager for appcelerator mobile?
0
votes
0answers
22 views
Paginator with “$fetchJoinCollection = true” won't respect “ORDER BY” in doctrine DQL?
Having a strange issue. We are using MariaDB 5.5 and doctrine/orm 2.3.3, and trying to use the Doctrine Paginator with DQL.
http://docs.doctrine-project.org/en/latest/tutorials/pagination.html
The ...
0
votes
0answers
17 views
FlushAction and Lazy attribute
I have a Solution 'MySolution' in VS. In one project 'Domain' I have defined de following classes:
public class CarBase
{
public virtual void Foo();
}
public class Car : CarBase
{
...
0
votes
1answer
28 views
Enthought Traits with SQLAlchemy
The question is obvious: is it possible to use both ets Traits and SQLAlchemy for the same class? If no, what an alternative approach could you suggest?
2
votes
2answers
38 views
Does Dapper support Enums?
I have a class User where Role is enum with values: Employee, Admin etc... Dapper throws an exception: "The member Role of type System.Enum cannot be used as a parameter value"
Does dapper support ...
0
votes
0answers
31 views
Get latest values in GROUP BY using Laravel Eloquent ORM
I'm trying to understand how Laravel's Eloquent ORM works and was looking at the following MySQL query:
SELECT id, name, date FROM tablename GROUP BY name ORDER BY date
The use of GROUP BY always ...
0
votes
0answers
38 views
Oracle ORDImage and EclipseLink || Hibernate
I'm trying to create ORM with EclipseLink in my Java EE + OracleDB application. The problem is that I don't know how to map ORDImage type from database. I tried to use @Struct but without a success.
...
-1
votes
1answer
7 views
Libraries in hibernate 4.x
I am studing a book about Hibernate. The book is about Hibernate 3 but I would like to use hibernate 4.x.
There are some libraries in Hibernate 3 that I can't find in Hibernate 4 (for example ...
0
votes
0answers
39 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
0answers
24 views
Undefined index: joinColumns in symfony2
I have this Many-To-Many relationship in my symfony2 orm. If I export it from the database itself then it makes the entity Tag the owning side and Server the inverse side. I want to change this but ...







