Object-relational mapping (ORM) is a technique for mapping between object-oriented systems and relational databases.

learn more… | top users | synonyms (1)

439
votes
12answers
73k views

What is the n+1 selects issue?

The problem is often mentioned in object-relation mapping discussions, and I understand that it has something do to with having to make a lot of database queries for something that seems simple in the ...
158
votes
17answers
38k views

Any good ORM tools for Android development? [closed]

Anyone working on the Android ('gPhone') have or know of a place where I can find a good ORM tool for it? The code is written in Java, and the database is SQLite. What I would like to find is a tool ...
119
votes
11answers
80k views

Hibernate vs JPA vs JDO - pros and cons of each?

I'm familiar with ORM as a concept, and I've even used nHibernate several years ago for a .NET project; however, I haven't kept up with the topic of ORM in Java and haven't had a chance to use any of ...
117
votes
39answers
8k views

Why do we need entity objects?

Ok, I realize I might be downvoted into oblivion for this question, especially given my stance on the matter, but I really need to see some honest, thoughtful debate on the merits of the currently ...
110
votes
23answers
13k views

Weaknesses of Hibernate

I would like to know which are the weak points of Hibernate 3. This is not pretended to be a thread against Hibernate. I think it will be a very useful knowledge for decide if Hibernate is the best ...
109
votes
8answers
25k views

NHibernate vs LINQ to SQL

As someone who hasn't used either technology on real-world projects I wonder if anyone knows how these two complement each other and how much their functionalities overlap?
103
votes
10answers
30k views

Entity Framework 4 vs NHibernate

A lot has been talked about Entity Framework first version on the web (also on stackoverflow) and it is clear that it was not a good choice when we already have better alternative like NHibernate. But ...
97
votes
11answers
17k views

Doctrine2: Best way to handle many-to-many with extra columns in reference table

I'm wondering what's the best, the cleanest and the most simply way to work with many-to-many relations in Doctrine2. Let's assume that we've got an album like Master of Puppets by Metallica with ...
95
votes
13answers
46k views

What are some good Python ORM solutions? [closed]

I'm evaluating and looking at using CherryPy for a project that's basically a javascript front-end from the client-side (browser) that talks to a Python web service on the back-end. So, I really need ...
88
votes
12answers
45k views

What Java ORM do you prefer, and why? [closed]

It's a pretty open ended question. I'll be starting out a new project and am looking at different ORMs to integrate with database access. Do you have any favorites? Are there any you would advise ...
87
votes
4answers
9k views

What's the best strategy for unit-testing database-driven applications?

I work with a lot of web applications that are driven by databases of varying complexity on the backend. Typically, there's an ORM layer separate from the business and presentation logic. This makes ...
85
votes
10answers
18k views

Using an ORM or plain SQL?

For some of the apps I've developed (then proceeded to forget about), I've been writing plain SQL, primarily for MySQL. Though I have used ORMs in python like SQLAlchemy, I didn't stick with them for ...
83
votes
5answers
56k views

Hibernate show real SQL [duplicate]

if I set <property name="show_sql">true</property> in my hibernate.cfg.xml configuration file in the console I can see the SQL. But it's not real SQL... Can I see the SQL code that ...
81
votes
7answers
30k views

How can you do paging with NHibernate?

For example, I want to populate a gridview control in an ASP.NET web page with only the data necessary for the # of rows displayed. How can NHibernate support this?
79
votes
5answers
25k views

Which ORM should I use for Node.js and MySQL? [closed]

I'm rewriting a project to use Node.js. I'd like to keep using MySQL as the DB (even though I don't mind rewriting the schema). I'm looking for a simple-to-use, reasonable-performance ORM, which ...
71
votes
27answers
19k views

Which ORM for .NET would you recommend? [closed]

I haven't worked on a .NET project for a while (more than a year). Before I've never used an ORM for a .NET application. What are some of your takes on this? Does using one make sense? Which ones ...
66
votes
8answers
25k views

PHP ORMs: Doctrine vs. Propel

I'm starting a new project with symfony which is readily integrated with Doctrine and Propel, but I of course need to make a choice.... I was wondering if more experienced people out there have ...
63
votes
15answers
13k views

Subsonic Vs NHibernate

What is the concensus on when to use one of these tools adversed to the other? I find Subsonic very useful in terms of getting things done quickly, but on large projects it tends not to scale, and its ...
63
votes
20answers
9k views

Are there good reasons not to use an ORM? [closed]

During my apprenticeship, I have used NHibernate for some smaller projects which I mostly coded and designed on my own. Now, before starting some bigger project, the discussion arose how to design ...
62
votes
2answers
15k views

data mapper vs active record [closed]

What are the advantages and disadvantages of both active record and data mapper? Please be PHP-specific, where the language matters. Personal experiences are welcome! Ideally with both.
58
votes
2answers
26k views

Map enum in JPA with fixed values?

I'm looking for the different ways to map an enum using JPA. I especially want to set the integer value of each enum entry and to save only the integer value. @Entity @Table(name = "AUTHORITY_") ...
57
votes
2answers
52k views

object references an unsaved transient instance - save the transient instance before flushing

I receive following error when i save the object using hibernate object references an unsaved transient instance - save the transient instance before flushing Can you help me ?
56
votes
8answers
69k views

JPA CascadeType.ALL does not delete orphans

I am having trouble deleting orphan nodes using JPA with the following mapping @OneToMany (cascade = CascadeType.ALL, fetch = FetchType.EAGER, mappedBy = "owner") private List<Bikes> bikes; I ...
53
votes
3answers
12k views

Entity Framework Code First - two Foreign Keys from same table

I've just started using EF code first, so I'm total beginner in this topic. I wanted to create relations between Teams and Matches: 1 match = 2 teams (home, guest) and result. I thought It's easy to ...
52
votes
7answers
2k views

Life without JOINs… understanding, and common practices

Lots of "BAW"s (big ass-websites) are using data storage and retrieval techniques that rely on huge tables with indexes, and using queries that won't/can't use JOINs in their queries (BigTable, HQL, ...
51
votes
12answers
17k views

Hibernate, iBatis, Java EE or other Java ORM tool

We're in the process of planning a large, enterprise application. We're focusing our efforts on evaluating hibernate after experiencing the pains of J2EE. It looks like the new Java EE API is ...
46
votes
12answers
11k views

What is the best way to improve performance of NHibernate?

I have an application that uses NHibernate as its ORM and sometimes it experiences performance issues due to how the data is being accessed by it. What kind of things can be done to improve the ...
45
votes
10answers
14k views

Question about the benefit of using an ORM [closed]

I want to use an ORM for learning purposes and am try nhibernate. I am using the tutorial and then I have a real project. I can go the "old way" or use an ORM. I'm not sure I totally understand the ...
43
votes
2answers
14k views

How to update database table schemas with NHibernate schema generation?

I'm trying to figure out how to use NHibernate configuration with mapping to update table schemas, rather than dropping and recreating them. Currently I'm using the ...
43
votes
9answers
11k views

A list of Entity Framework providers for various databases

Which providers are there and your experience using them I would like to know about all possible native .NET Framework Entity Framework providers that are out there as well as their limitations ...
42
votes
6answers
59k views

How to persist a property of type List<String>in JPA

What is the smartest way to get an entity with a field of type List get persisted? Command.java package persistlistofstring; import java.io.Serializable; import java.util.ArrayList; import ...
42
votes
7answers
24k views

Print query string in hibernate with parameter values

Is it possible in hibernate to print generated sql queries with real values instead of question marks? How would you suggest to print queries with real values if its not possible with hibernate api?
40
votes
10answers
78k views

What is lazy loading in Hibernate?

What is lazy loading in Java? I don't understand the process. Can anybody help me to understand the process of lazy loading?
40
votes
4answers
9k views

.net ORM Comparison [closed]

I was talking with someone about the Entity Framework, and I'm not really into it yet, but I'd like to learn it. However, I'm still kinda confused whether I should learn it or not. I've heard a lot of ...
38
votes
2answers
7k views

Is there a way to call a stored procedure with Dapper?

I am very impressed with the results of Dapper Micro ORM for stackoverflow.com. I am considering it for my new project and but I have one concern about that some times my project requires to have ...
38
votes
2answers
24k views

JPQL IN clause: Java-Arrays (or Lists, Sets…)?

I would like to load all objects that have a textual tag set to any of a small but arbitrary number of values from our database. The logical way to go about this in SQL would be to build an "IN" ...
38
votes
4answers
7k views

Redbean vs Doctrine [closed]

I found RedBean today on StackOverflow and was wondering when/whether to use it instead to Doctrine. I have read a lot about Doctrine and was just starting to use it. Even if it's working now I think ...
38
votes
4answers
13k views

Best practices for SQLite DB and ContentProvider

My Android app is reading and writing to a local SQLite DB from a few different Activities and a Service. Pretty standard. But I'm not happy with the way I've got all the DB details stored as ...
36
votes
9answers
9k views

nhibernate, entity framework, active records or linq2sql

my team is starting a new project on asp.net mvc, and we are wondering what technology for data access to use, how do you think which one is the best, who has the best performance ? which one is ...
36
votes
6answers
10k views

What ORMs work well with Scala? [closed]

I'm about to write a Scala command-line application that relies on a MySQL database. I've been looking around for ORMs, and am having trouble finding one that will work well. The Lift ORM looks nice, ...
36
votes
2answers
11k views

Performing Inserts and Updates with Dapper

I am interested in using Dapper - but from what I can tell it only supports Query and Execute. I do not see that Dapper includes a way of Inserting and Updating objects. Given that our project (most ...
34
votes
17answers
10k views

Why should you use an ORM?

If you were to motivate the "pros" of why you would use an ORM to management/client, what would the reasons be? Try and keep one reason per answer so that we can see what gets voted up as the best ...
34
votes
1answer
3k views

Django queries - id vs pk

When writing django queries one can use both id/pk as query parameters. Object.objects.get(id=1) Object.objects.get(pk=1) I know that pk stands for Primary Key and is just a shortcut, according to ...
33
votes
10answers
4k views

Code-First or Database-First, how to choose?

Let us suppose we are going to start new project - application that contains some business logic, user interface on ASP.NET, WPF or both of them. We'd like to use ORM or DAL code generator and ...
31
votes
5answers
6k views

NHibernate or Fluent NHibernate? [closed]

I would be interested in hearing op opinions from others regarding whether which they would choose (no 'neithers' please ;), and why. What are the downsides to using fluent? (version dependancy ...
31
votes
4answers
12k views

hibernate or eclipselink?

It seems like EclipseLink has been chosen by sun as the reference implementation of JPA 2.0, nevertheless I see lots of people continue to use hibernate... I have no experience with any of them, so I ...
31
votes
8answers
20k views

ADO.NET Entity vs NHibernate

So the ADO.NET Entity Framework has gotten a little bit of bad press (in the form of blog entries and a petition) but I don't want to rush to judgement. I'm limited in time for experimentation but I ...
30
votes
8answers
8k views

Why doesn't Oracle tell you WHICH table or view does not exist?

If you've used Oracle, you've probably gotten the helpful message "ORA-00942: Table or view does not exist". Is there a legitimate technical reason the message doesn't include the name of the missing ...
29
votes
4answers
5k views

Django “Cannot add or update a child row: a foreign key constraint fails”

I have a model Coupon, and a model Photo with a ForeignKey to it: class Photo(models.Model): coupon = models.ForeignKey(Coupon, related_name='description_photos') ...
29
votes
3answers
10k views

Which Micro ORM to use? [closed]

Trying to decide between Dapper, Massive and PetaPoco. I do like simplicity of Dapper, fexibility of Massive and POCO support in PetaPoco but am currently procrastinating about which one to choose for ...

1 2 3 4 5 140