Object-relational mapping (ORM) is a technique for converting data between incompatible type systems in object-oriented programming languages.
238
votes
9answers
37k views
What is the n+1 selects problem?
The problem is often mentioned in O/R-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 object ...
163
votes
34answers
59k views
Good PHP ORM Library?
Is there a good object-relational-mapping library for PHP?
I know of PDO/ADO, but they seem to only provide abstraction of differences between database vendors not an actual mapping between the ...
102
votes
38answers
6k 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 ...
85
votes
15answers
20k views
Any Good ORM tools for Android development?
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 DB is SQLite. What I would like to find is a tool that ...
85
votes
9answers
20k 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?
79
votes
7answers
19k 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 ...
66
votes
7answers
21k 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?
62
votes
11answers
48k 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 ...
58
votes
13answers
24k views
What are some good Python ORM solutions?
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 ...
58
votes
15answers
12k 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 ...
56
votes
4answers
4k 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 ...
53
votes
27answers
7k views
Which ORM for .NET would you recommend?
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 ...
51
votes
10answers
9k 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 ...
50
votes
18answers
6k views
Are there good reasons not to use an ORM?
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 ...
42
votes
9answers
4k 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 ...
42
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, ...
38
votes
13answers
20k 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 ...
38
votes
14answers
20k views
Good ORM for C++ solutions?
Does anyone have a good recommendation for an ORM (Object Relational Mapper) for C++?
Our technology stack is:
IDE/C-Compiler = Borland C++ Builder so ideally something that is known to compile with ...
36
votes
12answers
7k 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 ...
34
votes
8answers
38k 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 ...
33
votes
11answers
10k views
Hibernate, iBatis, JEE 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 JEE API is simpler. ...
33
votes
22answers
17k views
What would you regard as the best performing ORM for .NET? [closed]
I'm curious if anyone has done any performance comparisons with any or all of the main players in the .NET ORM space. Specifically I'm interested in comparisons between the following:
Linq to SQL
...
31
votes
5answers
3k views
Which ORM should I use for Node.js and MySQL?
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 ...
31
votes
7answers
12k 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 ...
29
votes
1answer
5k views
data mapper vs active record
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.
28
votes
6answers
13k views
hibernate show real sql
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 ...
26
votes
9answers
5k 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 ...
26
votes
4answers
3k views
NHibernate or Fluent NHibernate?
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 ...
26
votes
5answers
4k views
ASP.NET and Entity Framework in Layered Architecture - using Entity Framework for ORM only
I have an ASP.NET application that uses a layered architecture e.g. presentation layer, business logic layer, data access layer.
I don't want to the business layer to have to know anything about how ...
26
votes
2answers
9k 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 ...
25
votes
5answers
7k views
What ORMs work well with Scala?
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, ...
25
votes
5answers
13k views
NHibernate session management in ASP.NET MVC
I am currently playing around with the HybridSessionBuilder class found on Jeffrey Palermo's blog post:
...
24
votes
1answer
11k 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_")
...
23
votes
11answers
2k views
Why are people continuing to use xml mapping files instead of annotations?
I've observed the strange fact (based on the questions in the hibernate tag) that people are still actively using xml files instead of annotations to specify their ORM (Hibernate/JPA) mappings.
There ...
23
votes
11answers
2k views
ORM/Persistence layer Advice
Hi all
I'm starting a new project and I'm looking around for either a very good ORM or for a non-SQL-based persistence layer.
For this project, I really don't care on how the data is persisted, as ...
23
votes
10answers
2k 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 ...
23
votes
9answers
18k 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 ...
22
votes
8answers
5k 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 ...
22
votes
10answers
7k views
21
votes
4answers
3k views
.net ORM Comparison
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 ...
21
votes
15answers
5k 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 ...
21
votes
8answers
4k 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 ...
20
votes
2answers
1k views
Doctrine 2 Inheritance Mapping with Association
NOTE : if what I want is not possible, a "not possible" answer will be accepted
In the Doctrine 2 documentation about inheritance mapping, it says there are 2 ways :
Single table inheritance (STI)
...
20
votes
1answer
1k views
Stored procedure output parameter set back to POJO by iBATIS
I'm using iBATIS to call a Stored Procedure on MSSQL Server, the input parameters are properties on a POJO that is put to the map:
Map<String, Object> saveMap = new HashMap<String, ...
20
votes
5answers
8k views
Android: 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 ...
19
votes
13answers
3k views
Why is ORM considered good but “select *” considered bad?
Doesn't an ORM usually involve doing something like a select *?
If I have a table, MyThing, with column A, B, C, D, etc, then there typically would be an object, MyThing with properties A, B, C, D. ...
19
votes
5answers
33k 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 ...
19
votes
7answers
7k views
Problem using SQLite :memory: with NHibernate
I use NHibernate for my dataacess, and for awhile not I've been using SQLite for local integration tests. I've been using a file, but I thought I would out the :memory: option. When I fire up any of ...
19
votes
13answers
1k views
Why have object oriented databases not been successful (yet)?
That's the question. Give only one reason you think why have OODB failed or why many systems nowadays still use relational databases.
18
votes
4answers
6k 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?